or
| <telerik:RadGrid runat="server" ID="uxRadGrid" AllowFilteringByColumn="False" GridLines="None" |
| Skin="Simple" AutoGenerateColumns="False" OnNeedDataSource="uxRadGrid_NeedDataSource" |
| OnItemCommand="uxRadGrid_ItemCommand" OnSortCommand="uxRadGrid_SortCommand"> |
| <MasterTableView DataKeyNames="id" AllowPaging="True" |
| AllowSorting="True"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="id" UniqueName="id" AutoPostBackOnFilter="true" |
| AllowFiltering="False" FilterControlWidth="30" AllowSorting="true" SortExpression="id" |
| HeaderText="Incident ID"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="product" AutoPostBackOnFilter="true" AllowFiltering="False" |
| FilterControlWidth="40" AllowSorting="true" HeaderText="Product" SortExpression="product"> |
| </telerik:GridBoundColumn> |
| <telerik:GridDateTimeColumn DataField="comment" DataFormatString="{0:yyyy-MM-dd}" |
| AutoPostBackOnFilter="true" FilterControlWidth="40" AllowFiltering="false" AllowSorting="true" |
| HeaderText="Date" SortExpression="comment"> |
| </telerik:GridDateTimeColumn> |
| <telerik:GridBoundColumn DataField="description" AutoPostBackOnFilter="true" AllowFiltering="False" |
| AllowSorting="true" SortExpression="description" HeaderText="Description" ItemStyle-Width="50%"> |
| <ItemStyle Width="50%" /> |
| </telerik:GridBoundColumn> |
| </Columns> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px" /> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px" /> |
| </ExpandCollapseColumn> |
| </MasterTableView> |
| <ClientSettings EnableRowHoverStyle="true" EnablePostBackOnRowClick="true"></ClientSettings> |
| <FilterMenu EnableTheming="True"> |
| <CollapseAnimation Duration="200" Type="OutQuint" /> |
| </FilterMenu> |
| </telerik:RadGrid> |
| protected void rgEditor_UpdateCommand(object source, GridCommandEventArgs e) |
| { |
| GridEditableItem item = e.Item as GridEditableItem; |
| Hashtable edited = new Hashtable(); |
| item.OwnerTableView.ExtractValuesFromItem(edited, item); |
| //at this point edited has all the keys I would expect but the valeus are all null |
| } |
protected
void rsScheduler_AppointmentUpdate(object sender, Telerik.Web.UI.AppointmentUpdateEventArgs e)
protected
void rsScheduler_AppointmentInsert(object sender, Telerik.Web.UI.SchedulerCancelEventArgs e)
Cannot deserialize dialog parameters. Please refresh the editor page.
What to do?