Thursday 15 August 2013

javascript - autoedit not working with frozen colummn -



javascript - autoedit not working with frozen colummn -

i trying utilize frozen column setup , 1 time got working autoedit setting not working anymore. come in edit mode cell have double click activate cell, there setting or need add together editing on single click of cell versus double click.

the source handling click

if (hasfrozenrows) { if ((!(options.frozenbottom) && (cell.row >= actualfrozenrow)) || (options.frozenbottom && (cell.row < actualfrozenrow)) ) { scrollrowintoview(cell.row, false); } setactivecellinternal(getcellnode(cell.row, cell.cell)); }

wraps editor display phone call setactivecellinternal in check on hasfrozenrows. furthermore, check defaulted false , changes for

if (options.frozenrow > -1) { hasfrozenrows = true; //...removed remaining code }

so without setting grid alternative of frozenrow: 0 you'll have double-click edit. note first "data" row corresponds value 1.

javascript slickgrid

No comments:

Post a Comment