1

我希望下面的代码添加新行Tabular Form并将焦点移动到(添加的行)上的第一个单元格 for example (#f02_0003)

    apex.widget.tabular.addRow();
for (i=1;i<100;i=i+1)
// to loop all existing row in order to get the new added row id 
        {
             if( $('#f02_'+('000'+i).slice(-4)).length()>0 )
             // to check whether the row with looped id exists or not
                {
                        continue;
                }
             else 
                {
                        $('#f02_'+('000'+(i-1)).slice(-4)).focus(); 
                        // to focus the expected added row
                        break;
                }
        }

它添加新行永远不要关注任何单元格。

请帮忙!..

4

1 回答 1

1

删除循环。然后添加以下行(假设第一列下的元素名称是'f02'):

$("[name='f02']").last().focus();
于 2016-09-06T00:54:31.753 回答