Hello,
I've got an RadGrid with inline edit mode. I put a GridNumericColumnEditor in the markup and associated it with a column(ColumnEditorID attribute) .
The first time I click "edit", the editor is applied to the column. If I click "cancel" and then click "edit" again, everything goes well.
But, if I try to "edit" a row while already have one in edit mode, the editor is not applied. If I put a watch on it, it's empty.
I put on the same page a "GridDateTimeColumnEditor" and everything works with this one.
here's my code
Any Idea?
I've got an RadGrid with inline edit mode. I put a GridNumericColumnEditor in the markup and associated it with a column(ColumnEditorID attribute) .
The first time I click "edit", the editor is applied to the column. If I click "cancel" and then click "edit" again, everything goes well.
But, if I try to "edit" a row while already have one in edit mode, the editor is not applied. If I put a watch on it, it's empty.
I put on the same page a "GridDateTimeColumnEditor" and everything works with this one.
here's my code
<telerik:GridNumericColumnEditor ID="quantityColumnEditor" runat="server"> |
<NumericTextBox runat="server" ID="xxx" Width="50px" ShowSpinButtons="true" MaxValue="999" |
MinValue="1"> |
<IncrementSettings Step="1" /> |
</NumericTextBox> |
</telerik:GridNumericColumnEditor> |
<telerik:GridDateTimeColumnEditor ID="deliveryDateColumnEditor" runat="server"> |
<TextBoxStyle Width="92px" /> |
</telerik:GridDateTimeColumnEditor> |
<telerik:GridNumericColumn ColumnEditorID="quantityColumnEditor" FilterControlWidth="50px" |
ConvertEmptyStringToNull="true" HeaderText="QUANTITY" DataType="System.Int32" |
DataField="QUANTITY" UniqueName="quantity"> |
<HeaderStyle Width="80px" Wrap="false" CssClass="rgHeader xxFCcol6" /> |
</telerik:GridNumericColumn> |
<telerik:GridDateTimeColumn ColumnEditorID="deliveryDateColumnEditor" HeaderText="DATE OF REQUEST" |
DataField="REQUESTDATE" DataType="System.Datetime" EmptyDataText="n/a" ConvertEmptyStringToNull="true" |
UniqueName="requestdate" DataFormatString="{0:d}"> |
<HeaderStyle Width="100px" CssClass="rgHeader xxFCcol3" /> |
</telerik:GridDateTimeColumn> |
Any Idea?