my RadGrid has this child DetailTable:
...problem is, the attribute CommandItemStyle-Font-Bold="true" doesnt work. none of the CommandItemStyles seem to work (font bold, italic, background color, etc).
they work in my MasterTableView, but not in the DetailView.
im using the office2007 skin.
any idea whats up?
thanks,
matt
sd
<DetailTables> |
<Telerik:GridTableView |
Width="100%" |
Name="offenderCharges" |
DataKeyNames="OffenderChargeID" |
AutoGenerateColumns="false" |
EditMode="EditForms" |
Caption=" " |
CommandItemDisplay="Top" |
CommandItemStyle-Font-Bold="true" |
NoDetailRecordsText="No Charges" |
CssClass="setMargin"> |
<ParentTableRelation> |
<Telerik:GridRelationFields MasterKeyField="OffenderID" DetailKeyField="OffenderID"/> |
</ParentTableRelation> |
<CommandItemSettings AddNewRecordText="Add new Charge" RefreshText="" RefreshImageUrl="~/1.gif" /> |
<Columns> |
<Telerik:GridEditCommandColumn ButtonType="LinkButton" UniqueName="editColumn" ItemStyle-ForeColor="#333333" ItemStyle-Font-Bold="True" /> |
<Telerik:GridButtonColumn CommandName="Delete" ButtonType="LinkButton" Text="Delete" UniqueName="deleteColumn" ConfirmText="Delete charge?" ConfirmTitle="Delete" ItemStyle-ForeColor="#333333" ItemStyle-Font-Bold="True" /> |
<Telerik:GridBoundColumn HeaderText="OffenderChargeID" UniqueName="OffenderChargeID" DataField="OffenderChargeID" Visible="False" ReadOnly="true"/> |
<Telerik:GridBoundColumn HeaderText="OffenderID" UniqueName="OffenderID" DataField="OffenderID" ReadOnly="true" Visible="false"/> |
<Telerik:GridDropDownColumn HeaderText="Charge" UniqueName="Charge" DataField="ChargeID" DropDownControlType="RadComboBox"/> |
<Telerik:GridDropDownColumn HeaderText="Victim #" UniqueName="VictimNumber" DataField="VictimNumber" DropDownControlType="RadComboBox"/> |
<Telerik:GridDropDownColumn HeaderText="Relationship" UniqueName="Relationsip" DataField="OffenderVictimRelationshipTypeID" DropDownControlType="RadComboBox"/> |
</Columns> |
</Telerik:GridTableView> |
</DetailTables> |
...problem is, the attribute CommandItemStyle-Font-Bold="true" doesnt work. none of the CommandItemStyles seem to work (font bold, italic, background color, etc).
they work in my MasterTableView, but not in the DetailView.
im using the office2007 skin.
any idea whats up?
thanks,
matt
sd