• beforeLaunch

        • beforeLogout

        • beforeSaveForm

          called when save function is invoked. This function make additional check for the read data. With return value, it inhibit the save action.
        • beforeShowForm

          called between the creation of the form and the first showing the form (fig.2). This function used for the form modification (eg. css etc) or event binding. This function doesn't effect to matrix row.
        • beforeShowTable

          called after table is created (fig.3).
        • beforeShowTableBody

          called after table body is created (fig.3).
        • berforeChangeForm

          called just after the element value has changed. it's used for the element initialization (fig.2).
        • beforeShowTableHead

          called after table head is created (fig.3).
        • berforeShowMatrix

          called in the creation of the form when each matrix row element is created (fig.2). The matrix row modifications and event binding should be done in this function. Since the created matrix row is cloned, all event binded in this function is available if row count will be changed.
        • onBroadcast

          called when broadcast event has occurred.
        • onChangeForm

          called after all operation of the system against element value's change. All value is already initialized and calculated. And changes are accumulated in redo buffer already (fig.2). The platform can do most of operation only within RSD description. However if you need to do more things, use this function and make it happen.
        • onChangeMode

          called when form mode is changed between editable and un-editable.
        • onDrawTable

          called when draw table by each line.
        • onGetForm

          called when data is read from the form. onGetForm should be used as complementary with 'onPutForm'. It's useful when object and form has some physical difference, and need to be modified (fig.3).
        • onIndexEnd

          called when index worker has completed.
        • onLoadForm

          called when data is loaded from database [ after string decryption ] (fig.3).
        • onPutForm

          should be used as complementary with 'onGetForm'. It's useful when object and form has some physical difference, and need to be modified (fig.3).
        • onSaveForm

          called when data is saved into database [ before string encryption ] (fig.3).
        • onShowView

          called when View is created.