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};
}
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};
}