When using the standard Edit command in a column, it is possible to customize the standard text for the edit button (command.Edit().Text("Doit")). But it is not possible to customize the Cancel- or Update-Text (as it is in the grid: command.Edit().CancelText("Nope").UpdateText("Yep")) or to leave the text blank.
Hello,
You can achieve the desired result by using the Messages.Commands.Update and Canceledit configuration options.
.Messages(m =>
{
m.Commands(c => c.Update(" ").Canceledit(" "));
})
Kind Regards,
Alex Hajigeorgieva
Progress Telerik