<Columns>
<telerik:GridTemplateColumn HeaderText=" " UniqueName="Status" HeaderStyle-Width="30px" ItemStyle-HorizontalAlign="Right">
</telerik:GridTemplateColumn>
This all works okay. However when I call the dataBind() method from javascript in conjuction with the OnRowDataBound handler to populate the rows (by obtaining the cell and setting the innerHTML), my grid appears is loaded as I expect BUT the style properties that I set on the Columns such as the ItemStyle-HorizontalAlign="Right" are no longer applied. My question is how do I set the styles if I want them retained when loading the Grid via client-side code?
More broadly, is it possible to work with ItemTemplates when working with the client-side dataBind() without having to resort to the OnRowDataBound event?