Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

bind progressbar to flash remoting / CFC

Status
Not open for further replies.

russland

Programmer
Jan 9, 2003
315
CH
could somebody help me on binding the progressbar to the flash remoting / cfc transaction? i badly would like to have the data retrieval followed by the flash progress bar.

by the way, i can easily retrieve and output the data. that's just fine. here my code (with NO approach to bind the progressbar to it) - i hope it would make it easier for you to explain it to me.

thanks a lot

--------------------------------------------------------------------------------------------
var gw = NetServices.createGatewayConnection();
var srvBooking = gw.getService("CockPit.booking", this);
srvBooking.getAccounts();
function getAccounts_Result(recordSet)
{
Accounts.dataProvider = recordSet;
Accounts.labelFunction = function(item){return item.AccountNumber + " " + item.AccountDescription};
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top