In this blog post we will see how to Disable or Hide the query select button using controller class.
override the showQuerySelectButton method in controller class and just add ret = false;
public boolean showQuerySelectButton(str parameterName)
{
boolean ret;
ret = super(parameterName);
ret = false;
return ret;
}
No comments:
Post a Comment
Please do not add any spam link in the comment box.