The method: grid_cell_txt_edit() contains the following line of code:
var attrs = grid.get_col_attrs ( v [ 2 ] );
This should be
var attrs = grid.get_col_attrs ( v [ 1 ] );
since v[1] contains the column index.
Log in to post a comment.