Hi,
I have a grid, where the column is rendered via ClientRowTemplate, and on that template, I have 3 buttons, that should open 3 different pop-ups (similar to popUp Edit).
.Editable(editable => editable<br> .Mode(GridEditMode.PopUp)<br> .Window(w =><br> {<br> w.HtmlAttributes(
new
{ @
class
=
"csa-edit"
});<br> w.HtmlAttributes(
new
{ style =
"height: 200px;"
});<br> w.Height(200);<br> w.Width(500);<br> w.Title(
"Customer Validation"
);<br> w.Events(v =><br> v.Open(
"OnEditStart"
)<br> .Activate(@<text>function () { console.log(
"EditWindow.Activate"
) }</text>));<br> }))
I've tried this, but it's not what I exactly need, because I need to have customized templates for each button.
Can you point me some article or demo ?
Any help would be highly appreciated.
Best regards,
Manuel