How can I change the title of this Kendo MVC Grid column using Javascript using a button in another column?
This is the column to which I want to change the title:
columns.Bound(c => c.segundo_nombre).Title("2do Nombre").Width(20);
And this is the button I want to use to change the title:
columns.Command(commands => commands.Custom("Cambiar").Click("change"));