By default i have set all my table row in readOnly true, and when I click on one row this one have to be set on readOnly false.
I have make a function in afterSelection callback for do this and it’s work :
do you want the single row to become editable when a user selects a cell inside it?
If so please update this Fiddle http://jsfiddle.net/84em8Lv6/ with the cells, countClick and editIsActive settings
I have edit the fiddle, try to edit without filter : it’s works, after try with the A1 field uncheck and click on the first line.
You will see it’s not working, and if you re-check the A1 field you will see the row who’s readOnly is false.
Sorry for my delay too, I have try somthing like that but i’m not sure it’s the good solution.
Indeed, I need to get the visible physical id of the row when i click on a any cell, actually i get the physical id on filter but with the old visible order …
Basically, all the indexes in Handsontable are tangled. Some of the callbacks are using visual and some physical indexes.
If you want to get an actual physical index you call toPhysicalColumn and toPhysicalRow and when you have physical indexes and you want to convert them to visual toVisualColumn and toVisualRow.