
function QXNarrowWorklistSimple(caller,viewer,body,callback,pageSize)
{this.caller=caller;this.viewer=viewer;this.body=body;this.callback=callback;this.pageSize=pageSize;}
QXNarrowWorklistSimple.prototype=new WorklistSimple();QXNarrowWorklistSimple.prototype.doAll=function(body)
{this.run(new QXNarrowWorklistCriteria(1,this.pageSize),body);}
QXNarrowWorklistSimple.prototype.makeCall=function(criteria,dataHandler)
{this.caller.getQXNarrowWorklist(criteria.page,criteria.pageSize,dataHandler);}
QXNarrowWorklistSimple.prototype.gotoQuote=function(ev)
{var record=this.myRecord;this.myCallback.callback.gotoQuote(record.symbol);return false;}
function QXNarrowWorklistCriteria(page,pageSize)
{this.page=page;this.pageSize=pageSize;}