Hey,
Is it possible to retrive value of a cell, if i click on any row , but column should 4,
So for example i have [10x10] hotTable, then if I select row-4 and col-7 it should alert me the value present in 4th row and 4th column value, or if I select row-9 and col-2 it should alert the value present in 9th row and 4th column value
But, yea this col-7 or col-2 can be any column. And i have used div with its id to put the container of handsontable, like
var container = document.getElementById('article');
Hence column should be static, through javascript how can we implement this?
Thank you