For some troubleshothing reasons I would like to know the diffference between
public int task(int _taskId)
{
int ret;
ret = super(_taskId);
return ret;
}
and
public int task(int _taskId)
{
#Task
int ret;
if(_taskId == #TaskF5)//
{
formMainDatasource_DS.research();
formMainDatasource_DS.reread();
formMainDatasource_DS.refresh();
ret = 1;
}
else
{
ret = super(_taskId);
}
return ret;
}
For the first sight it looks like it works same. (But on some our forms element.task(#TaskF5) is causing troubles in super(_taskId) )
*This post is locked for comments
I have the same question (0)