Hello,
I have enabled the column moving feature in the Ignite Grid as following:
feature.ColumnMoving().AddMovingDropdown(false)
But, this throws the following exception:
"Uncaught Error: No such widget loaded: igGridColumnMoving"
Am I missing something?
Regards,
Arfan Baig
Are you using 12.2? Apparently column moving was CTP there, so its not included in the ifnragistics.js file (I too ran into that problem). Not sure if the loader accounts for it or not, especially from MVC.
D.
Yes, I am using 12.2. So, how do I use this feature?
Arfan Baig.
Well, you didn't say how you were referncing scripts. But. Either upgrade to 13.1 where it is released or manually referenced the column moving javascript file on your page.
Hello Arfan,
Please do not hesitate to contact me if you have any additional questions regarding this matter.
In your scenario it seems that the ColumnMoving feature is added correctly to the igGrid. For example:
.Features(features => { features.ColumnMoving().AddMovingDropdown(false); features.Paging().PageSize(30).Type(OpType.Remote).PageSizeList(new List<int>() {10,15,20,25,30 }); . . . })
.Features(features => {
features.ColumnMoving().AddMovingDropdown(false);
features.Paging().PageSize(30).Type(OpType.Remote).PageSizeList(new List<int>() {10,15,20,25,30 });
.
})
What I can suggest is to ensure that all the scripts for you igGrid and its features are referenced correctly as this might be causing the issue.
Additionally, what I can recommend is start using version 13.1 or the latest version currently available - 13.2 of IgniteUI where the column moving feature is officially released.
Some further reference about the ColumnMoving feature in version 13.1 could be found at:
http://help.infragistics.com/jQuery/2013.2/ui.iggridcolumnmoving
I hope you find this information helpful.
Please let me know if you need any further assistance with this matter.