Re: [flex_india:30907] combobox selected item

2010-07-29 Thread Khalid Chaudhary
Hope above code helps to acheive what you want. On Fri, Jul 30, 2010 at 1:24 AM, JT wrote: > It friends, > > How can I load a drop down box with pre-selected item? > > Here is my dropdown box > > [Bindable] >public var items:ArrayCollection = new ArrayCollection( >

[flex_india:30906] combobox selected item

2010-07-29 Thread JT
It friends, How can I load a drop down box with pre-selected item? Here is my dropdown box [Bindable] public var items:ArrayCollection = new ArrayCollection( [ {label:"Item 1", data:"item1"}, {label:"Item2", data:"item2"}, {label:"I

Re: [flex_india:30903] Share data between mxml

2010-07-29 Thread Abdul
Hi, 1. Use one common actionscript *singleton class*. 2. Declare the variables what ever you need in that class. 3. Then store the data in that class variables and retrieve those dats in the main.mxml Here the class is used as Bridge between the components / Modules as our wish. *Abdul | Flex

Re: [flex_india:30903] flex debuging

2010-07-29 Thread Vatsala Dorairajan
On 29-07-2010 20:11, cholid ridwan wrote: hi all anyone can share about debuging in flex? thanks -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to flex_india@googlegroups.com. To unsubscribe from thi

Re: [flex_india:30903] flex debuging

2010-07-29 Thread Abdul
Hi, This may help for you... http://learn.adobe.com/wiki/display/Flex/Debugging+tutorial On 29 July 2010 20:11, cholid ridwan wrote: > hi all > anyone can share about debuging in flex? > thanks > > *Abdul | Flex Snippet:**http://abdulthought.blogspot.com/* -- *With Regards*, *Nizar.* *Dis

[flex_india:30902] Merging cells in the advanceddatagrid

2010-07-29 Thread sravan kumar
hi All, I need to merge some cells of particular column in the AdvancedDatagrid . Can anyone tell me how to do this?? Thanks Sravan -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to flex_in...@google

Re: [flex_india:30901] Share data between mxml

2010-07-29 Thread nithya flex
Here is the modified code yours http://www.adobe.com/2006/mxml"; width="248" height="204" title="window pop-up" showCloseButton="true" close="closePopUp()" >

Re: [flex_india:30900] Advanedatagrid creation by extending advanceddatagrid class

2010-07-29 Thread nithya flex
*this*.addChild(objDG); here key word "this" means what? its a AdvancedDataGrid itslef. that is the reson i think. you need to add component to some display object On Thu, Jul 29, 2010 at 8:42 PM, Sidhu Vijay Sidhu wrote: > * > this is the as class but not displaying the data grid how can i d

[flex_india:30899] Re: DateField inside combobox

2010-07-29 Thread Shri Priya S
welcome :) On Jul 29, 10:48 am, Malek S wrote: > hi ShriPriya > thank you very much > yes that works > :) cool > > On Tue, Jul 27, 2010 at 7:20 PM, Shri Priya S wrote: > > > > > Hi Malek, > > I have changed your code as below. Hope this helps > > > > > > http://www.adobe.com/2006/mxml"; > > layo

Re: [flex_india:30897] Flex Session handling

2010-07-29 Thread Sidhu Vijay Sidhu
Client side code http://www.adobe.com/2006/mxml"; layout="horizontal"> -- Put this Remoting-config file in blazeds

[flex_india:30897] Advanedatagrid creation by extending advanceddatagrid class

2010-07-29 Thread Sidhu Vijay Sidhu
* this is the as class but not displaying the data grid how can i do it... package * { *import* mx.controls.AdvancedDataGrid; [*Bindable*] *public* *class* AdvancedDataGridColors *extends* AdvancedDataGrid { *public* *var* objDG:AdvancedDataGrid; *public* *function* AdvancedDataGridColors()

[flex_india:30896] flex debuging

2010-07-29 Thread cholid ridwan
hi all anyone can share about debuging in flex? thanks -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to flex_in...@googlegroups.com. To unsubscribe from this group, send email to flex_india+unsubscr..

Re: [flex_india:30894] share event between mxml

2010-07-29 Thread Sidhu Vijay Sidhu
yes register it in one mxml and it in second On Thu, Jul 29, 2010 at 8:14 AM, Salah wrote: > can i share event between mxml ? > > for example i have 2 file : main.mxml and popup.mxml > > by pressing button on popup.mxml the main.mxml must show alert > how can i do this !! > > -- > You rec

Re: [flex_india:30894] Share data between mxml

2010-07-29 Thread Sidhu Vijay Sidhu
1. create the object of one mxml into another..and use it 2. Or dispatch the event from one mxml with data and handle it in another mxml On Thu, Jul 29, 2010 at 8:02 AM, Salah wrote: > hi, > i'm new in Flex and i need your help !! > > i need to share variable between a main.mxml and a popup.mxml

Re: [flex_india:30893] share event between mxml

2010-07-29 Thread Vatsala Dorairajan
On 29-07-2010 17:44, Salah wrote: can i share event between mxml ? for example i have 2 file : main.mxml and popup.mxml by pressing button on popup.mxml the main.mxml must show alert how can i do this !! have you considered using some framework like Swiz or Cairngorm - they will hav

Re: [flex_india:30892] share event between mxml

2010-07-29 Thread Khalid Chaudhary
main.mxml http://www.adobe.com/2006/mxml"; layout="vertical"> PopUpComp.mxml http://www.adobe.com/2006/mxml"; showCloseButton="true" close="{PopUpManager.removePopUp(*this*)}"> [*Event*(name=*"backEvent"*)] On Thu, Jul 29, 2010 at 6:09 PM, Moham

Re: [flex_india:30891] share event between mxml

2010-07-29 Thread Mohamed Salah Guetat
can you please write an exmaple thx 2010/7/29 Khalid Chaudhary > dispatch event from popup.mxml and catch it in main.mxml > > > On Thu, Jul 29, 2010 at 5:44 PM, Salah wrote: > >> can i share event between mxml ? >> >> for example i have 2 file : main.mxml and popup.mxml >> >> by pressing butto

Re: [flex_india:30890] share event between mxml

2010-07-29 Thread Khalid Chaudhary
dispatch event from popup.mxml and catch it in main.mxml On Thu, Jul 29, 2010 at 5:44 PM, Salah wrote: > can i share event between mxml ? > > for example i have 2 file : main.mxml and popup.mxml > > by pressing button on popup.mxml the main.mxml must show alert > how can i do this !! > > -- >

[flex_india:30888] Share data between mxml

2010-07-29 Thread Salah
hi, i'm new in Flex and i need your help !! i need to share variable between a main.mxml and a popup.mxml for example : 1-popup.mxml http://www.adobe.com/2006/mxml"; width="248" height="204" title="window pop-up"

[flex_india:30888] share event between mxml

2010-07-29 Thread Salah
can i share event between mxml ? for example i have 2 file : main.mxml and popup.mxml by pressing button on popup.mxml the main.mxml must show alert how can i do this !! -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this

Re: [flex_india:30886] Flex Session handling

2010-07-29 Thread Abdul
Hi, This may help for you.. http://www.solutionhacker.com/data-intelligence/data-visualization/flex-remoting-and-session-management/ On 29 July 2010 13:03, Sarma wrote: > Hi to all, > > > How to maintain the flex session in flex application. If have any > examples please forward to me. > >

Re: [flex_india:30886] Getting error when installing Flash builder 4

2010-07-29 Thread Harsh Vardhan
well saravanan get a torrent download for flash builder 4. i got itv n itz running jst too fyn. On Thu, Jul 29, 2010 at 12:06 PM, Saravanan wrote: > Below is the error I am getting when I am trying to install Flash > builder 4... Any solutions? > > Exit Code: 7 > > > -

[flex_india:30885] Flex Session handling

2010-07-29 Thread Sarma
Hi to all, How to maintain the flex session in flex application. If have any examples please forward to me. Thanks & Regards, M R R Sarma -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to flex_in.