Dhtmlx Cell Focus

Hi All,

I have a requirement where by i want to have focus on a particular cell . how to achieve this.

Best regards
Umesh Thakur

I am asking this question as the below doesnt work

if(gridPotList.cells(id,1).getValue() != “”) {
addNewRow();
gridPotList.selectCell(id,6,false,false,true);

			}

Try to do the following:

[code]if(gridPotList.cells(id,1).getValue() != “”) {
addNewRow();
windows.setTimeout(function(){
gridPotList.selectCell(id,6,false,false,true);
},1)

}[/code]

if(gridPotList.cells(id,1).getValue() != “”) {
addNewRow();
window.setTimeout(function(){
gridPotList.selectCell(id,6,false,false,true);
},1)

}

the above is not working, it doesnt take the focus.

Appreciate your help in finding the solution for this api method

Any news, i have cvode delivery on 29th october. Appreciate you qick response

Try to cancel “onclick” event bulbing on the button or link which you press to edit cell:

Edit cell