Why it appears different in IE and Chrome (including FF and Opera) ?
As you i expect it to be 100% but it's not ... i have also set the Width property of all controls inside the template columns to 100% e.g.
<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="false" AllowMultiRowSelection="true" AllowPaging="true" AllowSorting="true" GridLines="None" ShowGroupPanel="false" Skin="MetroTouch" AutoGenerateEditColumn="true" Width="100%">As you i expect it to be 100% but it's not ... i have also set the Width property of all controls inside the template columns to 100% e.g.
<telerik:GridTemplateColumn HeaderText="Company" Display="false"> <ItemTemplate> <asp:Label ID="CompanyID" runat="server" Text='<%# Eval("CompanyID")%>' /> </ItemTemplate> <EditItemTemplate> <telerik:RadComboBox ID="CompanyIDEdit" runat="server" Width="100%" Skin="MetroTouch"></telerik:RadComboBox> </EditItemTemplate> </telerik:GridTemplateColumn>