RecordSet.isLocal()
Returns true if the RecordSet object is local and false if records remain to be retrieved from the application server.
Method. Determines whether a RecordSet object is local or associated with an application server. and records remain to be retrieved from the application server. This method is functionally identical to the RecordSet.isFullyPopulated method.
The following example demonstrates the isLocal method:
#include "NetServices.as"
var productList =new RecordSet(["ProductName","Price","Color"]);
if (productList.isLocal())
{
_root.tellUser.text ="This RecordSet object is not associated with a server.";
}
Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/flashremoting/mx/Using_Flash_Remoting_MX/asDict37.htm