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
898
rowSelectionChanging event not firing in Safari
posted

Hello,

the rowSelectionChanging event  is not fireing in Safari-Browser. In IE it works perfect.

Any ideas?

Regards Manfred

 

$("#gridResult").igGrid({

                    autoGenerateColumns: false,

                    alternateRowStyle: false,

                    autofitLastColumn: true,

                    width: "300px",

                    height: "300px",

                    fixedHeaders: false,

                    showHeader: true,

                    columns: [

                        { headerText: Platz, key:"Platz", dataType: "string", width: 50 },

                        { headerText: Seiten, key:"Umfang", dataType: "string", width: 60 },

                        { headerText: Firma, key:"Firma", dataType: "string", width: 190 },

                    ],

                    headerCellRendered:function (evt, ui) {

             if (ui.columnKey === "Umfang") {

                            $(ui.th).css("text-align", "center");

                        }

                    },

                    dataRendered: function (evt, ui) {

                        ui.owner.element.find("tr td:nth-child(1)").css("text-align", "center");

                        ui.owner.element.find("tr td:nth-child(2)").css("text-align", "right");

                    },

                    dataSource: table,

                    responseDataKey:"Records",

                    features: [{

                        name:'Selection',

                        mode:'row',

                        multibleSelection:false,

                        activation:true,

                        rowSelectionChanging: rowChanging

                    }],

                });

  • 24671
    posted

    hey Manfred,

    which Safari version are you using? I've tried the same config on Safari 5.1.7 and it works fine - the event is firing. 

    Thanks,

    Angel