Monday, 10 September 2012

dojox datagrid doesn't store last entered value without clicking enter


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]);

}

1 comment:

  1. Thanks Buddy :) This was very much useful for me .

    ReplyDelete

Custom single threaded java server

 package com.diffengine.csv; import java.io.*; import java.net.*; import java.util.Date; public class Server { public static void main(Str...