I have a Grid with the 'Add New Record' functionality implemented with the basic `.Toolbar(t => t.Create())`.
I have my grid set to be `.Editable(e => e.Mode(GridEditMode.Inline))`, along with this: `.Columns(c => { c => c.Command(x => x.Edit().Visible("editVisible"); })`
Whether I click the Toolbar 'Create' button or I click the 'Edit' button on an already existing record, the inline buttons say 'Update' and 'Cancel' , but I'd like the 'Update' button to say 'Create' when it is a new record.
I'm wondering what might be the best way to accomplish the above?