Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
80
Inline Edit on Top
posted

Hi,

Is there a solution to get the inline new row edit mode on the top a grid instead of bottom ?

Thanks

Parents
No Data
Reply
  • 37774
    Verified Answer
    posted

    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

Children