Is there a way to declaratively format individual filters? For instance, to have some align left, some align center, and each have different widths. I'd like to avoid a FilterTemplate, and ideally I'd like to do it in the markup, but if I have to, I'll just do it in the back end. Sample:
<
telerik:RadGrid
ID
=
"RadGrid"
runat
=
"server"
AutoGenerateColumns
=
"False"
AllowSorting
=
"True"
AllowFilteringByColumn
=
"True"
>
<
ClientSettings
AllowColumnsReorder
=
"True"
>
<
Scrolling
UseStaticHeaders
=
"True"
AllowScroll
=
"True"
SaveScrollPosition
=
"True"
ScrollHeight
=
"500px"
/>
</
ClientSettings
>
<
GroupingSettings
CaseSensitive
=
"False"
/>
<
MasterTableView
>
<
Columns
>
<
telerik:GridBoundColumn
UniqueName
=
"Name"
DataField
=
"Name"
HeaderText
=
"Name"
AutoPostBackOnFilter
=
"True"
HeaderStyle-Width
=
"35%"
ItemStyle-HorizontalAlign
=
"Left"
/>
<
telerik:GridBoundColumn
UniqueName
=
"Common"
DataField
=
"Common"
HeaderText
=
"Common"
AutoPostBackOnFilter
=
"True"
HeaderStyle-HorizontalAlign
=
"Center"
/>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>