Request toolbar button calls up search form

Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2990258
This commit is contained in:
phib 2010-04-21 05:24:24 +00:00
parent c075bb8a36
commit 1f75af645f
1 changed files with 8 additions and 0 deletions

View File

@ -194,11 +194,19 @@ public class ARequest implements ActionListener
query = new MQuery("");
String where = "(" + m_where + ") AND Processed='N'";
query.addRestriction(where);
query.setRecordCount(0);
}
else if (e.getSource() == m_all)
{
query = new MQuery("");
query.addRestriction(m_where.toString());
query.setRecordCount(0);
}
else if (e.getSource() == m_new)
{
query = new MQuery("");
query.addRestriction("1=2");
query.setRecordCount(0);
}
//
int AD_Window_ID = 232; // 232=all - 201=my