Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsGeneralPHPASPPerlColdFusionFlashHTML, CSS, ScriptsBrowsers

Webmaster Forum / Flash / Flash Remoting / May 2004



Tip: Looking for answers? Try searching our database.

In Progress returned from remoting recordset

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Vidal - 24 May 2004 17:28 GMT
Hello,

I'm using Remoting to return a recordset.  The first 10 records are returned,
but after that "In Progress" is returned.  Here's the code I'm using:

function getCustomers_Result( result )
{  
    result.setDeliveryMode("fetchall");
    var intLength:Number = result.length;
    for (var i = 0; i<intLength; i++) {
      _root.grid.addItem({CustomerID:result.getItemAt(i).CustomerID});
    }
}

When the records are traced you can see that [object] is returned for the
first 10 records and then "In Progress" is returned for the remaining records.  
How do I replace "In Progress" with the correct record object so it displays in
the DataGrid?
Script:

function getCustomers_Result( result )
{  
    result.setDeliveryMode("fetchall");
    var intLength:Number = result.getLength();

    for( var i = 0; i < intLength; i++ )
    {
      var record = result.getItemAt( i );      
      trace( record );

    }
}
 
tadeogutierrez - 24 May 2004 21:34 GMT
Same problem here,
MM accepts this is a bug on Dir MX2004. This problem exists since ver 8 and
MX. No workaround besides using SQL to get small recordsets.
Please let me know if there is more info about this issue.
Thanks in advance
Tadeo Gutierrez
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.