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
545
urgently need Help on IGgrid Column fixing problem
posted

Hi

I am using Ignite ui 2013, and i am facing one problem with column fixing feature in grid.

I am trying to use column fixing feature of grid but its not working for me its creating a pinup for me but i am not able to click on that or even its does not fix the column which i have mention at the time of initialization.

 $.ig.loader(function () {

 var BindData = {};

 var BindData.features = [   {
                                            name: "Filtering",
                                            allowFiltering: true,
                                            type: "local"
                                        },
                                        {
                                            name: "Resizing"
                                        },
                                        {
                                            name: "Sorting"
                                        },
                                        {
                                            name: "Selection",
                                            mode: "cell"
                                        },
                                        {
                                            name: "ColumnFixing",
                                            columnSettings: [
                                                {
                                                    columnKey: "PRODUCT_DESCRIPTION",
                                                    isFixed: true
                                                }
                                            ]
                                        }];

$("gridId").igGrid({
        columns: options.columns,
        autoGenerateColumns: false,
        autoFormat: true,
        width : "100%",
        dataSource: options.data,
        features: BindData.features

    });

for column definition i am using

{ headerText: "Product", key: "PRODUCT_DESCRIPTION", dataType: number, format: "", formatter: valueFormater, width: 100px, hidden: false }

Please let me know if i am missing something.

Please help me on urgent basis

Thanks

Parents Reply Children
No Data