Completed
Last Updated: 17 Feb 2020 13:31 by ADMIN
Daniel
Created on: 22 Sep 2016 00:26
Category: TreeList
Type: Feature Request
8
Make standard TreeList Cancel- and Update-Button texts customizable (as in the grid)
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. 
2 comments
ADMIN
Alex Hajigeorgieva
Posted on: 17 Feb 2020 13:31

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

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Hussein
Posted on: 20 Jun 2019 12:54
Yes it's very important!