<telerik:RadGrid ID="gvEventHistory" skin ="Default" runat="server" AutoGenerateColumns="false" AllowPaging="true" AllowSorting="true"
AllowFilteringByColumn="true" OnItemDataBound="gvEventHistory_ItemDataBound" OnItemCreated="gvEventHistory_ItemCreated" >
<MasterTableView>
<RowIndicatorColumn>
<HeaderStyle Width="2px" />
<ItemStyle Width ="10px" />
</RowIndicatorColumn>
<Columns>
<telerik:GridBoundColumn DataField="START_TIME" HeaderText="Start date" AllowFiltering="true"
CurrentFilterFunction="EqualTo" ShowFilterIcon="false" DataFormatString="{0:d}">
<FilterTemplate>
<telerik:RadDatePicker ID="rdStartDate" runat="server" ClientEvents-OnDateSelected="DateSelected">
</telerik:RadDatePicker>
</FilterTemplate>
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="END_TIME" AllowFiltering="true" HeaderText="Start time" CurrentFilterFunction="EqualTo" ShowFilterIcon="false" DataFormatString="{0:T}">
<FilterTemplate>
<telerik:RadTimePicker ID="rdStartTime" runat="server"></telerik:RadTimePicker>
</FilterTemplate>
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
<ClientSettings Selecting-AllowRowSelect="true">
<ClientEvents/>
</ClientSettings>
</telerik:RadGrid>
Thanks
Sri
Hello,
Something strange happens with the padding of the radGrid.
When I'm working locally (localhost) the width of my columns are equal to the specified width. That's correct. But when my project is published on my production server the effective column width is the width specified + the cell padding (about 8px). On my production server, my grid is swollen…
<HeaderStyle Width="165px" />
Localhost : the effective column width will be: 165px
Production server: the effective column width will be: 181px (Width="165px" + padding-left:8px + padding-right:8px)
Why this behavior?
Which scenario is correct?
Thank you.


Hi
Does the rad grid had a property that could let the user manipulate all the records that are bind to the grid in memory on client side and then summit all the changes to database. This is because a have to validate a specific column for all the records that are part of the same batch of records. I’m have an idea of using a data table to perform this task (update, insert, delete) records before submit changes to database. Please advice if this would be the correct approach.