Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    RadioGroup font style

    I'm trying to set a radiogroup font property via css, but it does not seem to work. Is there another way of doing this?

    Code:
    isc.DynamicForm.create({
        fields: [
            {title:"In Stock", type:"radio", baseStyle:"simpleCellDisabled" }
        ]
    });
    
    .simpleCellDisabled {
        font-family:Verdana,Bitstream Vera Sans,sans-serif; font-size:11px;
        color:#808080;
    }

    #2
    See the docs - you want textBoxStyle.

    Comment


      #3
      my mistake - thanks

      Comment

      Working...
      X