Hi,
I added the below code for masking a column. The column has to display 9-digit number in this form ####-#####
But the column is displayed as 123456789 instead of 1234-56789
Please let me know if there any issues with the above code.
Appreciate your help,
Mani
I added the below code for masking a column. The column has to display 9-digit number in this form ####-#####
But the column is displayed as 123456789 instead of 1234-56789
<telerik:RadGrid ID="rg_submitted_requests" runat="server" AllowPaging="True" AutoGenerateColumns="False" AllowSorting="True" GridLines="Both" CellPadding="0"> <MasterTableView AutoGenerateColumns="false"> <Columns> <telerik:GridMaskedColumn Mask="####-#####" HeaderText="PAF #" DataField="PAF_NUMBER"> </telerik:GridMaskedColumn> </Columns> </MasterTableView></telerik:RadGrid>Please let me know if there any issues with the above code.
Appreciate your help,
Mani