Is it possible to modify the column mask in AddRow of UltraGrid ? I have tried to set the MaskInput value in the InitializeLayout call, but the mask works only for normal grid cells. Finally I was able to set the mask also for AddRow cell by using a specific EditorControl. Is it possible to set the mask without using the EditorControl ?
Hi,
Setting the MaskInput property on a Column should also make it show up in the AddRow. I did a quick test with the latest version and it works as designed.
My grid initialize code looks like this:
private
void
ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
{
e.Layout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnTop;
e.Layout.Bands[0].Columns[
}
The MaskInput enum is described here.