To hide/show the query dialog field, you need to implement/override the showIndexFields() method of the dialog and return FALSE if you want to hide the field from the dialog query range.
here is an example:
public boolean showIndexFields(tableId _tableId)
{
boolean ret = true;
switch (_tableId)
{
case tableNum(YourTable):
ret = false;
break;
}
return ret;
}
here is an example:
public boolean showIndexFields(tableId _tableId)
{
boolean ret = true;
switch (_tableId)
{
case tableNum(YourTable):
ret = false;
break;
}
return ret;
}
No comments:
Post a Comment