Skip to main content

 

Hi group,

When cursor reaches the last editable cell, it creates a new row

Do you know if it's possible to prevent adding new row automaticly at the end of a row (when pressing enter) in grids of acumatica?

 

People have "Insert" right(not delete), they can Cancel the row after an unvolontary inserting but it's little bit anoying

 

Thanks =)

 

Hi @raphrf . try customizing the row inserting event. Something like this

RowInserting(PXCache sender, PXRowInsertingEventArgs e)
        {
            if (e.Row == null) return;
            Test row = (Test)e.Row;
            if (row.SomeId == null)
            {
                e.Cancel = true;
            }
        }


Reply