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
385
Problems with column hiding after installing update
posted

Hello-

After installing the 2012.1.2059 service release, the igGrid in my MVC3 project stopped loading data. It worked before the update.

I tracked the problem down to the column hiding code:

.Features(features =>
{
    features.Selection().MouseDragSelect(true).MultipleSelection(true).Mode(SelectionMode.Row);
    features.Resizing().AllowDoubleClickToResize(true);

 
    features.Hiding().ColumnSettings(settings =>
   {
       settings.ColumnSetting().ColumnKey("Neg").AllowHiding(false).Hidden(true);
   });


})

If it helps, I'm using the template engine, I allow sorting and filtering (except for the hidden column) and other options I'm setting for the grid are:

.Virtualization(true)
.VirtualizationMode(VirtualizationMode.Continuous)

This grid worked fine before the update- I have to comment it out now for the grid to finish rendering with data.

Any ideas?

Thanks,

Charlie

 

Parents Reply Children
No Data