9/5/2012 11:23:09 PM
Title:
Having problem in tabbing the controls inside intem renderer in a list
I have a list control which is using an item renderer.Renderer contains 4-5 other controls like button ,textInput etc. I want to move focus among these controls using Tab key ,which is not happening.I have tried tabEnabled,tabChildern,hasFocusableChildren properties bt still not working . Please some one help.
9/7/2012 12:36:10 AM
Hi try implementing IFocusManagerComponent in the child controls
<mx:Button implements="mx.managers.IFocusManagerComponent" />
9/7/2012 12:39:58 AM
try extending the list control and enable tabChildren . See this code
import flash.display.DisplayObject;
import mx.controls.List;
public class MyListControl extends List {
override protected function createChildren():void {
super.createChildren();
this.listContent.tabChildren = this.tabChildren;
this.listContent.tabEnabled = this.tabEnabled;
}
}
9/13/2012 1:43:11 PM
hi Friends ,
Please reply for my this query
http://askmeflash.com/qdetail/1924/upload-files-to-ftp-server-using-flex