Hello,
When using HtmlHelper I can do something like this if I want to change the UpdateText and CancelText to blank:
columns.Command(command => {
command.Edit()
.Text(" ")
.UpdateText(" ")
.CancelText(" ")
.HtmlAttributes(new { title = "Edit" });
command.Custom("Destroy")
.Click("showDeleteConfirmation")
.IconClass("k-icon k-i-trash")
.Text(" ")
.HtmlAttributes(new { title = "Delete" });
}).Width(75);
How do I accomplish the same thing with TagHelper? I tried checking to see if there's a canceltext or updatetext attribute but there is none.
<column width="75" title="Commands">
<commands>
<column-command text=" " name="edit" title="Edit" ></column-command>
<column-command text=" " name="cancel" title="Cancel" ></column-command>
</commands>
</column>
Thank you.