Hi,
you've made some changes in CSS during last versions of Telerik components.
Please, take a look at following style I had in my grid (ca stands for horizontal center alignment)
and now - how it looks in markup:
- my alignment is ignored!
As you can see, you now add your classes after all user-defined classes. As a result, all user-class css properties, that exist in your classes, too, are overridden - alignment, text weight, etc.! What for do you do this?
How to solve this problem? I have tons of controls with such markup!
you've made some changes in CSS during last versions of Telerik components.
Please, take a look at following style I had in my grid (ca stands for horizontal center alignment)
<telerik:GridBoundColumn HeaderStyle-CssClass='GridHeaderGreen ca' ItemStyle-CssClass='ca' DataField="Description" HeaderText="Description" SortExpression="WIZARD.FORM.DESCRIPTION"/>and now - how it looks in markup:
<th class="GridHeaderGreen ca rgHeader" scope="col"><a href="javascript:__doPostBack('ctl00$cphMain$wizardClientFormView$rgClientFormView$ctl00$ctl02$ctl02$ctl01','')" title="Click here to sort">Description</a></th>As you can see, you now add your classes after all user-defined classes. As a result, all user-class css properties, that exist in your classes, too, are overridden - alignment, text weight, etc.! What for do you do this?
How to solve this problem? I have tons of controls with such markup!