Hi,
I read http://www.telerik.com/community/forums/aspnet-ajax/grid/gridnumericcolumn-cant-set-format.aspx#895768 and was finally able to get my numeric column to format correctly (Side note: attaching via codebehind does seem like a hack). I am happy that the columns are formatting correctly for both view and edit modes. However, they don't seem to be following the formatting rules for the filter numeric text box in the column header. Is there a seperate property I need to set or something?
Thanks,
Kent
I read http://www.telerik.com/community/forums/aspnet-ajax/grid/gridnumericcolumn-cant-set-format.aspx#895768 and was finally able to get my numeric column to format correctly (Side note: attaching via codebehind does seem like a hack). I am happy that the columns are formatting correctly for both view and edit modes. However, they don't seem to be following the formatting rules for the filter numeric text box in the column header. Is there a seperate property I need to set or something?
Thanks,
Kent
| <telerik:GridNumericColumnEditor ID="employeeIdColumnEditor" runat="server"> | |
| <NumericTextBox> | |
| <NumberFormat DecimalDigits="0" GroupSeparator="" /> | |
| </NumericTextBox> | |
| </telerik:GridNumericColumnEditor> |
| <tekerik:GridNumericColumn DataField="MgrEmpID" ColumnEditorID="employeeIdColumnEditor" HeaderText="Employee ID" SortExpression="MgrEmpID" UniqueName="MgrEmpID" DataType="System.Int32"> | |
| </tekerik:GridNumericColumn> |