or
<telerik:GridDropDownColumn DataField="CategoryID" DataSourceID="SqlDataSource2" HeaderText="Category" ListTextField="CategoryName" ListValueField="CategoryID" UniqueName="CategoryID" ColumnEditorID="GridDropDownColumnEditor1"> </telerik:GridDropDownColumn><telerik:RadMaskedTextBox ID="radMaskedSingle" runat="server" DisplayPromptChar="X" HideOnBlur="true" HoveredStyle-BorderColor="#18d330" Mask="####" PromptChar="" SelectionOnFocus="None" Width="100px"></telerik:RadMaskedTextBox>
<telerik:RadMaskedTextBox ID="radMaskedStandard" runat="server" DisplayPromptChar="X"
HideOnBlur="true" HoveredStyle-BorderColor="#18d330" Mask="####" PromptChar=""
SelectionOnFocus="None" Width="100px" EnableSingleInputRendering="true"></telerik:RadMaskedTextBox>
protected void Page_Load(object sender, EventArgs e){ radMaskedSingle.Text = "0123"; radMaskedStandard.Text = "0123";}<table className="bold"> <tbody> <tr> If I use the apply css dropdown from the main editor tool-bar then class attribute is correctly added.
Do you have any ideas what could be wrong?
The Telerik.Web.UI.dll version is 2011.1.315.35.

<MasterTableView DataKeyNames="cid" DataSourceID="SqlDataSource1"> <DetailTables> <telerik:GridTableView runat="server" DataKeyNames="cid" DataSourceID="SqlDataSource2" AllowPaging="False" CommandItemDisplay="Top" AllowAutomaticInserts="True" AllowAutomaticUpdates="True"> <ParentTableRelation> <telerik:GridRelationFields DetailKeyField="cid" MasterKeyField="cid" /> </ParentTableRelation> ...