Hello,
I've made a command.Custom in my grid:
I also have a "add" button in the grid that opens a popup windo
.CancelText().UpdateText() which gives me another button that i don't want.
Thanks.
I've made a command.Custom in my grid:
columns.Command(command =>
{
command.Custom("Details")
.Text("<
i
class
=
" + "
icon-globe" + "></
i
> Details")
.SendDataKeys(true)
.Click("archiveAppliance")
.HtmlAttributes(new { @style = "width:100px" });
}).Width(110);
})
w
.Editable(editable =>
editable.DisplayDeleteConfirmation("Är du säker på att du vill ta bort detta Delområde?")
.Mode(GridEditMode.PopUp)
.TemplateName("PartAreaEdit")
.Window(w => w.Title("Detaljer"))
)
H
ow can i change the labels on the buttons "update" and "cancel" in the popup window without making a command.edit() button and use the .Text().CancelText().UpdateText() which gives me another button that i don't want.
Thanks.