Hi
In my sample , there are two columns
the first column is OK and works fine, just like your sample:
{
datafield: ‘firstname’,
cellsrenderer: function (row, columnfield, value, defaulthtml, columnproperties) {
return ‘<span style=”margin: 4px; float: ‘ + columnproperties.cellsalign +
‘; color: #0000ff;”>Column Without Touch Scroll Problem’ + value + ‘</span>’;
}
}
but in this column :
{
datafield: ‘lastname’,
cellsrenderer: function (row, columnfield, value, defaulthtml, columnproperties, bounddata) {
var s = ‘<span style=”margin: 4px; background-color: greenyellow;float: ‘ +
columnproperties.cellsalign +
‘; color: #0000ff;”>’;
s += ‘<span style=”float: left”>’ + bounddata.productname + ‘</span>’; // problem is here
s += ‘<span style=”float: left”> Column With Touch Scroll Problem </span>’;
s += “</span>”;
return s;
}
}
when i use “bounddata”, it crash on scrolling, however if i replace bounddata.productname with value, its works fine too.
Thanks for attention