I've seen the examples where you can modify the data IN the Grid. I can't do this since I'm displaying only a few columns in the grid of all the columns available for the data I want to add, edit or delete. So I need to use the standard way of doing this which involves a link in the grid which redirects to a separate view that contains all the fields.
How do I add links to the Grid so I can redirect to a different page?
I would also be interested in knowing if it's possible to have the form in a modal Popup over the Grid, but one thing at a time.
This is a sample of my code:
I don't think I can add them in the columns property. Any suggestions on how to do this is appreciated.
Thanks,
King Wilder
How do I add links to the Grid so I can redirect to a different page?
I would also be interested in knowing if it's possible to have the form in a modal Popup over the Grid, but one thing at a time.
This is a sample of my code:
<div id="expensegrid"></div><script type="text/javascript"> $(function () { $("#expensegrid").kendoGrid({ dataSource: { serverPaging: false, serverSorting: true, pageSize: 10, transport: { read: { url: '@Url.Action("ExpenseListJson","Expense")', dataType: 'json' } }, error: function (e) { alert(e); } }, height: 250, sortable: true, pageable: true, columns: ["CategoryName", "VendorName", "Amount"] }); });</script>I don't think I can add them in the columns property. Any suggestions on how to do this is appreciated.
Thanks,
King Wilder