Re: popup

2005-02-15 Thread Miguel Daz Valenzuela
right, but how can I call a webservices in a popup?. Or I need to do another flex and aspx files for it? --- In flexcoders@yahoogroups.com, Tarik Ahmed [EMAIL PROTECTED] wrote: Yup, you can have pop-ups creating pop-ups. And call webservices or remote objects.

Re: popup

2005-02-15 Thread Miguel Daz Valenzuela
great, will check it out, thanks Steven --- In flexcoders@yahoogroups.com, Steven Webster [EMAIL PROTECTED] wrote: Miguel, right, but how can I call a webservices in a popup?. Or I need to do another flex and aspx files for it? If you pick up the documentation, or perhaps the free PDF

how can I close a mxml with one function?

2005-02-14 Thread Miguel Daz Valenzuela
hi dudes I need a function that allows me to close automatically a mxml file is opened, after pressing OK in an alert thanks in advance for all help

Re: how can I close a mxml with one function?

2005-02-14 Thread Miguel Daz Valenzuela
hi man i don´t need to go to a previous page or something else, I need to close definitively the page --- In flexcoders@yahoogroups.com, Dane, Sid [EMAIL PROTECTED] wrote: Hi, It depends on what you mean by close. For example, you could do something like:

Re: popup

2005-02-14 Thread Miguel Daz Valenzuela
thanks man, will check it out --- In flexcoders@yahoogroups.com, Tarik Ahmed [EMAIL PROTECTED] wrote: Simple popup example: http://www.cflex.net/showfiledetails.cfm?ObjectID=28 From: Miguel D�az Valenzuela [EMAIL PROTECTED] Sent: Monday,

how can I refresh a datagrid?

2005-02-11 Thread Miguel Daz Valenzuela
hi dudes, I need to refresh and reload a datagrid in Flex. Can anyone help me?

Re: how can I refresh a datagrid?

2005-02-11 Thread Miguel Daz Valenzuela
yeah, that works fine, but now i have another problem. My datagrid contains a checkrenderer column. If I select one o more items and do that you tell me, I refresh datagrid, but I can´t cancel selection. I hope you could understand me --- In flexcoders@yahoogroups.com, Dimitrios Gianninas [EMAIL

Re: how can I do this in Flex? -- (warning, best -practice police are in the hou

2005-02-07 Thread Miguel Daz Valenzuela
unfortunately, the 'if' cycle does not work as I want, or, the condition is never fulfilled. I will see other functions or properties. many thanks to you my friend, thanks for all help you give me --- In flexcoders@yahoogroups.com, Mehdi, Agha [EMAIL PROTECTED] wrote: Miguel, Let me put

Re: how can I do this in Flex? -- (warning, best -practice police are in the hou

2005-02-04 Thread Miguel Daz Valenzuela
supposing a datagrid with 5 rows that´s function you give me: function envia_motivos_fuc(){ var Request:Object = new Object(); for(var i=0;idg.length;i++) { if(dg.getItemAt(i).select) { Request.para = dg.getItemAt(i).code servicio_datos_motivos.send(Request); } } } with this function I

Re: how can I do this in Flex? -- (warning, best -practice police are in the hou

2005-02-03 Thread Miguel Daz Valenzuela
my friend, i have this problem now if I do if(dg.getItemAt(i).select) never can enter to do: Request.para = dg.getItemAt(i).code servicio_datos_motivos.send(Request); i don´t know which option or function can I use ... thanks a lot anyway for all your help if you can help me now, i will be very

Re: how can I do this in Flex? -- (warning, best -practice police are in the hou

2005-02-02 Thread Miguel Daz Valenzuela
mmm, i have a question now, how can i get only one column of a row i need to send it how a parameter, but no all row, only a column for example |___select one___|___code___|___name___| #9632; 101 name 1 #9632; 102 name 2 #9632; 103 name 3 supposing that I select the second row, I want to take

Re: how can I do this in Flex? -- (warning, best-practice police are in the hou

2005-02-01 Thread Miguel Daz Valenzuela
Well, many thanks to you for help me. I know about webservice and I have already realized an insert to datebase through Flex with simple textimputs or textareas, but my trouble is about a checkrenderer. I must count records of a datagrid, see which of those records they are checked, and extract

Re: how can I do this in Flex? -- (warning, best -practice police are in the hou

2005-02-01 Thread Miguel Daz Valenzuela
will now hold all the items from the datagrid where the checkbox is selected. To get other columnvalues you can simply say: Name = selectedData[0].name; Age = selectedData[0].age; Please let me know if that's what you wanted. Thanks -- Agha -Original Message- From: Miguel D�az

Re: how can I do this in Flex? -- (warning, best -practice police are in the hou

2005-02-01 Thread Miguel Daz Valenzuela
I have a problem, what kind of variable is myData? sorry for my ignorance --- In flexcoders@yahoogroups.com, Miguel D�az Valenzuela [EMAIL PROTECTED] wrote: yeah man, i think that is for me, i will check you suggestion many thanks to you Agha --- In flexcoders@yahoogroups.com, Mehdi