Intersoft WebDesktop Documentation
ClientSide Events
See Also Send Feedback
Intersoft WebDesktop > WebFlyPostBackManager > Concepts > ClientSide Events

Glossary Item Box

WebFlyPostBackManager will give a response to client side whenever there is a request. Regardless, the state of WebFlyPostbackManager will give a response.

Follows are the list of events :

 

Additionally WebFlyPostBackManager allows AutoEventWireUp which will automatically wire the event for each function in MetaData Collection

For example:

FPBMan.GetString() will be attached with an event WebFlyPostBackManagerInstance_OnGetString()

Sample Code

    
function
OnClientClick(controlId, parameter)

{
var FPBMan = ISGetObject("WebFlyPostBackManager1");





FPBMan.GetString();

}





function WebFlyPostBackManager1_OnGetString(returnValue)

{

alert(
"GetString result: " + unescape(returnValue));

}

See Also

Related Topics
{Overview}
{Features}

© 2012 Intersoft Solutions Corp. All Rights Reserved.