function wgFillOrder_BeforeEnterEditModeHandler(gridName, cellId)
{
var cell=igtbl_getCellById(cellId);
var row=cell.Row;
var column=cell.Column;
if(column.Key=="IDUNIDAD" && !row.getCell(0).getValue())
return true;
if(column.Key=="IDSECCIONALMACEN")
{
var cust=row.getCell(0).getValue(true);
if(cust)
{
var oCmbOrdr=igcmbo_getComboById("cbxSeccion");
oCmbOrdr.selectWhere("IDALMACEN="+cust);
}
}
}