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.
Hello TobiasRueger,
Thank you for contacting Infragistics!
We received your support request concerning column hiding and resizing, and this case has been assigned to me. Infragistics is dedicated to helping you solve this issue. Our team and I have done an initial review of your case and I recommend you see the following documentation, samples, and api for implementing Column hiding and resizing:
Hiding:http://help.infragistics.com/NetAdvantage/jQuery/2012.1/CLR4.0?page=igGrid_Column_Hiding.html
http://ko.infragistics.com/products/jquery/sample/grid/column-hiding-basic
http://help.infragistics.com/jQuery/2012.1/ui.iggridhiding
Resizing:http://help.infragistics.com/NetAdvantage/jQuery/2012.1/CLR4.0?page=igGrid_Column_Resizing.html
http://ko.infragistics.com/products/jquery/sample/grid/column-resizing-options
http://help.infragistics.com/jQuery/2012.1/ui.iggridresizing
Please let me know if you have any questions concerning this matter.
Sincerely,Mike P.Developer Support EngineerInfragistics, Inc.www.infragistics.com
I am following up to see if the information provided has resolved this matter.
Please let me know if I may be of further assistance with this matter.
thank you very much,
problem solved.