Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
475
Font inside DropDownList column
posted

I have a seemingly trivial question.

How to change the style of the font inside the select element of a DropDownList column? In firefox the font is larger than in the inactive cells and thus does not fit inside the cell. The only font property that I am setting is FrameStyle / Font-Size

Thanks.

Parents
  • 28464
    posted

    Hello,

    I think what you need is available off the ValueList-Style property for the respective column. There are tens of different display settings there, for example:

                                <igtbl:UltraGridColumn
                                    BaseColumnName="CompanyName"
                                    IsBound="True"
                                    Type="DropDownList"
                                    Key="CompanyName"
                                    ValueList-Style-Font-Size="15px"
                                    ValueList-Style-Font-Bold="true
    ">

    Please, let me know if this helps.

Reply Children