solves the problem of dojox datagrid doesn't store last entered value without clicking enter
//include tis method after defining your data grid (it will work in all browzers)
grid.onMouseOut=function()
{
var cells = dojo.query('#'+grid.id+' .dojoxGridCell');
grid.doclick(cells[0]);
}
Thanks Buddy :) This was very much useful for me .
ReplyDelete