AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones específicas de la Web / Funciones varias de WEBDEV
  • Parameters of jQuery function
  • Loading the jQuery libraries
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
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, requiring a good knowledge of JavaScript and the jQuery library
Ejemplo
// The CELL_Square control explodes before it disappears
jQueryExécute(CELL_Square,"effect","explode")

// Modify the opacity of the STC_1 control
jQueryExécute(STC_1, "fadeTo", "opacity", 0.5)
Sintaxis
<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.
Note: The "Field can be overlaid" option must be checked for the field ("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.
Please note: Javascript is case sensitive, so 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.
Observaciones

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:
jQueryExécute(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 loading code in the page:
  1. Display the description window of the page ("Description" in the context menu).
  2. Select the "Advanced" tab.
  3. Select the "HTML" tab.
  4. Copy the following lines of code 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>
Please note: When this help page was written, the library versions were 1.9.1 and 1.10.3.. We advise you to check whether these versions are still the current ones.
Method 2: To include Javascript files in your page (after download):
  1. Display the description window of the page ("Description" in the context menu).
  2. Select the "Advanced" tab.
  3. Select the "HTML" tab.
  4. Click the "Add" button and select the necessary JavaScript files (.js). Please note: it is advisable to check which versions are currently in use..
Componente: WDJS.DLL
Versión mínima requerida
  • Versión 19
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local