I used character based searching name in data grid by using http services . so i used text box and data grid , fcomptxt is text box id fComptxt.addEventListener(Event.CHANGE,applyFilter);
public function applyFilter(e : Event):void {
CompanyViewBean.companyViewBean = new CompanyViewBean();
CompanyViewBean.companyViewBean.subAction
= new XML("<actionContext><actionName>SearchCompany</actionName></actionContext>"); var nameSearch:String = fComptxt.text; CompanyViewBean.companyViewBean.companyName=<name>{nameSearch}</name>;
xmlGeneration()
}
In xmlgeneration function I sending request to sever using http services . But my clarification is
- if they typed fastly then get errors (http errors)
- Is it any possible do any other way implement quick searching
- i used keyboard down event and also keyboard up event then no use same problem occur.