Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
530
igGrid Features -> ColumnResizing / Hiding
posted

hi,

I use igGrid with MVC / razor: vbhtml and have problems with some features:

In the Controller class I did

Dim gridfil As New GridFiltering gridfil.Mode = FilterMode.Simple model.testGridModel.Features.Add(gridfil)             Dim gridsor As New GridSorting gridsor.Mode = SortingMode.Single gridsor.FirstSortDirection = "ascending" model.testGridModel.Features.Add(gridsor)             Dim gridpag As New GridPaging gridpag.PageSize = 2 model.testGridModel.Features.Add(gridpag)

and in the view only:

@Html.Infragistics.Grid(Model.testGridModel)

and these features work correctly.

However, I cannot find feature classes for "columnhiding", "columnresizing"

How can I add those features in my syntax because I did not find a GridColumnHiding Feature class like:

Dim gridcol As New GridColumnHiding model.testGridModel.Features.Add(gridcol)

Thank you.

Parents
No Data
Reply Children