Set Web Property with a Client-Side event: Difference between revisions

From DataFlex Wiki
Jump to navigationJump to search
(Created page with " This is a topic based on a forum post (archiving it here so that it is easier to find back) [https://support.dataaccess.com/Forums/showthread.php?65621-Set-Web-Property-with...")
 
m (Changed from Web Programming to Web Applications category)
 
Line 48: Line 48:
     http://www.dataaccess.eu/
     http://www.dataaccess.eu/


[[Category:Web Programming]]
[[Category:Web Applications]]

Latest revision as of 15:15, 8 April 2020

This is a topic based on a forum post (archiving it here so that it is easier to find back)

Set Web Property with Javascript

Harm's example code:

Object oMyForm is a cWebForm
    { WebProperty=Client }
    Property Integer piFocusCount 0
    
    Set psClientOnFocus to "window.OnFocusIncrementCount"
    Set piColumnSpan to 12
    Set psLabel to "Counts focus:"
    
End_Object

Object oMyButton is a cWebButton
    Set piColumnSpan to 0
    Set psCaption to "button"

    Procedure OnClick
        Integer iCount
        
        WebGet piFocusCount of oMyForm to iCount
        
        Send ShowInfoBox (SFormat("Form was focussed %1 times!", iCount))
    End_Procedure
End_Object

And the OnFocusIncrementCount JavaScript implementation:

function OnFocusIncrementCount(oEvent){
    var oMyForm = oEvent.oSource;
    var iCount = oMyForm.get("piFocusCount");
    iCount++;
    oMyForm.set("piFocusCount", iCount);
}

With the psClient.. event handlers you can define your functions globally (like in the example above) or locally on the object or subclass. If the event is defined globally then this will refer to the object on which the function is defined (in this case window). But the event always gets an event object as parameter with several properties including the source object of the event (oSource). So in the example above oSource points to the JavaScript version of oMyForm. Web properties can be accessed directly, but better is to use the get and set functions. The set function will make the property synchronized (so that is value is sent to the server) and both functions can take care of type conversions.

   Harm Wibier
   Data Access Europe B.V.
   http://www.dataaccess.eu/