Hi,
I want in my grid to have a delete button on every row. on click display confirm and on 'yes' action fire REST request to the server.

How to do it on Extjs I know (probably). I want to minimize my ExtJs code and use almost only Serverside code.
Is it possible?
Thanks
Html.X().ImageCommandColumn()
                    .Commands(
                        Html.X().ImageCommand()
                            .Icon(Icon.Decline)
                            .ToolTip(t =>
                            {
                                t.Text = "Delete 
                            }
                    )