Is there a way to get my FilterTemplates aligned with my header (and items)? I've aligned my headers and items left, but the filter is still stuck in the middle. Snippet, details omitted:
Edit for clarity: Is there a way to do it declaratively?
<MasterTableView TableLayout="Fixed"> <Columns> <telerik:GridBoundColumn UniqueName=HeaderText="User Name"> <HeaderStyle HorizontalAlign="Left"/> <ItemStyle HorizontalAlign="Left"/> <FilterTemplate> <telerik:RadTextBox/> <telerik:RadScriptBlock > <script type="text/javascript"> // filter code
</script> </telerik:RadScriptBlock> </FilterTemplate> </telerik:GridBoundColumn> </Columns></MasterTableView>Edit for clarity: Is there a way to do it declaratively?