RE: [flexcoders] Returning an object Array from .NET to Flex

2005-08-01 Thread Abdul Qabiz
Check out the object you are returning from server is in correct format ? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of priya sSent: Monday, August 01, 2005 10:22 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Returning an object Array from

RE: [flexcoders] Returning an object Array from .NET to Flex

2005-08-01 Thread priya s
ck out the object you are returning from server is in correct format ? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of priya sSent: Monday, August 01, 2005 10:22 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Returning an object Array fro

Re: [flexcoders] Returning an object Array from .NET to Flex

2005-07-31 Thread priya s
this did'nt seem to work ! :( the datagrid is still not getting populatedam i missing out on something???Sreejith Unnikrishnan [EMAIL PROTECTED] wrote: Here's the code that works. Additions in red.?xml version="1.0" encoding="utf-8"? mx:Application

Re: [flexcoders] Returning an object Array from .NET to Flex

2005-07-29 Thread priya s
Hi all, Here's what I m trying to do 1) In the following code snippet, the datagrid is not populated with the array I am returning from .NET. Where am I going wrong?? 2)Any changes to be incorporated, if I am returning an array of objects, i.e other than the built in types?? .NET Class

RE: [flexcoders] Returning an object Array from .NET to Flex

2005-07-29 Thread João Fernandes
Julho de 2005 13:12 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Returning an object Array from .NET to Flex Hi all, Here's what I m trying to do 1) In the following code snippet, the datagrid is not populated with the array I am returning from .NET. Where am I going

RE: [flexcoders] Returning an object Array from .NET to Flex

2005-07-29 Thread Dirk Eismann
an object Array from .NET to Flex Hi all, Here's what I m trying to do 1) In the following code snippet, the datagrid is not populated with the array I am returning from .NET. Where am I going wrong?? 2) Any changes to be incorporated, if I am returning an array of objects, i.e other than

RE: [flexcoders] Returning an object Array from .NET to Flex

2005-07-29 Thread Philippe Maegerman
Don't you need an array of objects for the datagrid? Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of priya sSent: vendredi 29 juillet 2005 14:12To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Returning an object Array from .NET

Re: [flexcoders] Returning an object Array from .NET to Flex

2005-07-29 Thread Sreejith Unnikrishnan
Here's the code that works. Additions in red. ?xml version="1.0" encoding="utf-8"? mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" backgroundColor="#FF" initialize="initApp()" mx:Script var arrTest:Array; // don't know if all this is required. function initApp() {

RE: [flexcoders] Returning an object Array from .NET to Flex

2005-07-29 Thread priya s
les/fast_userguide.html , it’s a good way to debug your applications ;) João Fernandes Secção de Desenvolvimento Departamento de Informática From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of priya sSent: sexta-feira, 29 de Julho de 2005 13:12To: flexcoders@yaho

[flexcoders] Returning an object Array from .NET to Flex

2005-07-28 Thread priya_uvce
Hi all, I want to return an object array from .NET to Flex, and bind the datagrid with the same. I have created an Array variable in ActionScript which will recieve the object array from .NET. I bind this array variable to the DataGrid. The array I am returning is an array of objects of say an

Re: [flexcoders] Returning an object Array from .NET to Flex

2005-07-28 Thread Clint Modien
Are you using webservices?On 7/28/05, priya_uvce [EMAIL PROTECTED] wrote: Hi all,I want to return an object array from .NET to Flex, and bind thedatagrid with the same.I have created an Array variable in ActionScript which will recieve theobject array from .NET.I bind this array variable to the

Re: [flexcoders] Returning an object Array from .NET to Flex

2005-07-28 Thread priya s
no i m not using web services. I am just making a call to a .NET assembly.Clint Modien [EMAIL PROTECTED] wrote: Are you using webservices? On 7/28/05, priya_uvce [EMAIL PROTECTED] wrote: Hi all,I want to return an object array from .NET to Flex, and bind thedatagrid with the same.I have created

Re: [flexcoders] Returning an object Array from .NET to Flex

2005-07-28 Thread Sreejith Unnikrishnan
Priya, you should add as much details you can, preferably with pieces of code that you are willing to share (to help understand problem better) when you ask a question. Because the short answer to your question is NO. You are doing fine. That is indeed how you bind a result to a datagrid. A