- Parameters of jQuery function
- Loading the jQuery libraries
jQueryExecute (Function) In french: jQueryExecute
Not available
Runs a JavaScript method of the jQuery library on a page element. Remarks: - jQuery is used to run several chained methods.
- This function is an advanced feature: a good knowledge of JavaScript and jQuery library is required
// The CELL_Square control explodes before it disappears jQueryExecute(CELL_Square,"effect","explode") // Modify the opacity of the STC_1 control jQueryExecute(STC_1, "fadeTo", "opacity", 0.5)
Syntax
<Result> = jQueryExecute(<Control used> [, <Category>] , <jQuery function> [, <Parameter 1> [... [, <Parameter N>]]])
<Result>: Expected type Return value of jQuery method called. <Control used>: Control name Name of control that will be used in the page. Remark: The option "The control can be overlaid" must be checked for the control ("UI" tab in the control description window). <Category>: Optional character string Name of the category of functions in the jQuery library. <jQuery function>: Character string Name of jQuery function to run. Caution: JavaScript being case sensitive, the function name must respect the case used in the jQuery library. <Parameter 1>: Optional character string First parameter expected by the jQuery function. <Parameter N>: Optional character string Nth parameter expected by the jQuery function. Remarks Parameters of jQuery function If a procedure ("Callback") must be passed as parameter to the jQuery function, the browser procedure must be passed by reference (function name preceded by "&"). For example:
jQueryExecute(BTN_Addition, "click", &OnAddition)
Loading the jQuery libraries Several versions are available for the jQuery library. Several Javascript files can be found in the jQuery library. Therefore, the additional JavaScript libraries must be loaded. Two methods are available: - include the JavaScript load code in the header code of the page.
- download the Javascript jQuery libraries on the server and include the Javascript files in your project or page.
Method 1: To include the load code in the page: - Display the description window of the page ("Description" in the context menu).
- Select the "Advanced" tab.
- Select the "HTML" tab.
- Copy the following code lines into the "HTML code added to the page header" area:
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
Caution: When this help page was written, the libraries were available in version 1.9.1 and 1.10.3. We advise you to check whether these versions are still the current ones. Method 2: To include the Javascript files in your page (after download): - Display the description window of the page ("Description" in the context menu).
- Select the "Advanced" tab.
- Select the "HTML" tab.
- Click the "Add" button and select the necessary JavaScript files (.js). Caution: we advise you to check which versions are the current ones.
|
|
|
|