BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
Hi Wojciech,
Thanks for your interest in Syncfusion products.
I am afraid that I am unable to reproduce this issue with the given
information. I have created a sample based on the code snippet you have given. You
could use this sample and reproduce the issue if any. We have made this sample
work on JSON Mode, we will be glad if you please let us know the mode in which
you are interested in running the project. We are unable to use your Primoartis
product instead we have used HTML ActionLink to resolve this issue. Could you
please refer the below code snippet.
<div id="Target" style="width:100%;" class="sample-panel-margin">
@(Html.Syncfusion().Grid<UnboundExample.Models.JSONOrder>("UnBoundColumn_Grid")
.ActionMode(ActionMode.JSON)
.Caption("Orders")
.EnablePaging()
.EnableSorting()
.AutoFormat(Skins.Marble)
.Column(column =>
{
column.Add(p
=> p.OrderID).HeaderText("Order ID").TextAlign(TextAlignment.Right).Width(100);
column.Add(p
=> p.CustomerID).HeaderText("Customer ID");
column.Add(p
=> p.ShipCountry).HeaderText("Ship Country");
column.Add(p
=> p.ShipCity).HeaderText("Ship City");
column.Add("Delete").HeaderText("Delete
Record").Width(120)
.Format(@Html.ActionLink("Delete", "DeleteRecord", new { id = "{OrderID}"
}).ToString());
}))
</div>
For your convenience we have attached the sample
Please try this sample and get back to us with more information, so that
we can analyze that and provide the better solution.
Let us know if you have queries.
Regards,
Abdul Matin M