I'm feeling pretty stupid.
I have a page that contains a Kendo()Window
The window contains a Kendo().Grid(model)
I have populated the Grid with the data I want and have even made it selectable
Now I want to be able to load and populate a page based on the row selected.
Basically I want to return the 'ID' column and have the controller populate the view based on the 'ID'
BUT I AM LOST...
Can somebody please help
I have a page that contains a Kendo()Window
The window contains a Kendo().Grid(model)
I have populated the Grid with the data I want and have even made it selectable
@model IEnumerable<
HCS.Model.FinancialInstitution
>
@(Html.Kendo().Grid(Model)
.Name("Grid")
.Columns(columns =>
{
columns.Bound(p => p.ID).Visible(false);
columns.Bound(p => p.MainRT).Groupable(false);
columns.Bound(p => p.LegalName);
})
.Sortable()
.Scrollable()
.Filterable()
.Selectable()
.DataSource(dataSource => dataSource
.Ajax()
.ServerOperation(false))
)
Basically I want to return the 'ID' column and have the controller populate the view based on the 'ID'
BUT I AM LOST...
Can somebody please help