Hi,
I am using this command for add, edit and delete in Kendo Grid
columns.Command(command => { command.Edit(); command.Destroy();
.ToolBar(toolbar => toolbar.Create())
I knew I can change the button text by using
.Text("something")
.UpdateText("something")
.CancelText("something")
My question is how to remove the button text from them.
I have tried
.Text("")
.UpdateText("")
.CancelText("")
But it won't work.
Please help!
I am using this command for add, edit and delete in Kendo Grid
columns.Command(command => { command.Edit(); command.Destroy();
.ToolBar(toolbar => toolbar.Create())
I knew I can change the button text by using
.Text("something")
.UpdateText("something")
.CancelText("something")
My question is how to remove the button text from them.
I have tried
.Text("")
.UpdateText("")
.CancelText("")
But it won't work.
Please help!