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
}],
});
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