PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WEBDEV 2024 → llamar procedimientos wlanguaje desde javascript
llamar procedimientos wlanguaje desde javascript
Débuté par Chura WALLY, 22 oct. 2020 00:59 - 1 réponse
Membre enregistré
4 messages
Posté le 22 octobre 2020 - 00:59
Buenas tardes a todos ¿ hay alguna manera de llamar procedimientos wlanguaje desde javascript ? en windev si es posible pero en webdev no es posible alguien que me pueda ayudar por favor ...
Posté le 22 octobre 2020 - 20:41
If I remember correctly, to use controls -OR- call procedures (browser ones, of course) from JS, you have to:
1. First go into the project settings and find the option that DOES NOT CHANGE THE NAMES of things when generating the browser code. THis way, instead of being called A1, A2, and so on, they are called the way YOU named them...
You can them call them directly from your code,as they are JS procedures.

-OR-

2. You look at the generated page code with the page explorer in your browser (F12) and find the correct procedure name (the tranlsated one A13 by example) then call that name.