Hi,
Is there a solution to get the inline new row edit mode on the top a grid instead of bottom ?
Thanks
Perfect!
Thanks very much Matt
It sounds like you're referring to the TemplateAddRow. If this is the case, you could set the AllowAddNew property to control this behavior, i.e.
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e){ e.Layout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.TemplateOnTop;}
-Matt