Re: Creating nested controls

2005-02-24 Thread AC
Hi Background: I have created a control which displays a DataGrid with a header and footer show simple information such as a title and a time stamp. It is possible to scroll the grid and print each row of data held in the grid. (Resizing of the grid is not possible as it messes up the printing).

Re: [flexcoders] Creating nested controls

2005-02-21 Thread Manish Jethani
AC wrote: I have three Objects; 2 HBoxes which are populated with children at runtime, and a DataGrid. At runtime, I am trying to create a parent control (VBox) which contains all three of these controls. Create the three as children of the VBox. hbox1 = vbox.createChild(HBox, ""); hbox2 = vbox.cre

Creating nested controls

2005-02-21 Thread AC
Hello I have three Objects; 2 HBoxes which are populated with children at runtime, and a DataGrid. At runtime, I am trying to create a parent control (VBox) which contains all three of these controls. The two HBoxes are populated with child controls using createChild(...) method. Once this is do