PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WEBDEV 2024 → llamar procedimientos wlanguaje desde javascript
llamar procedimientos wlanguaje desde javascript
Iniciado por Chura WALLY, out., 22 2020 12:59 AM - 1 resposta
Membro registado
4 mensagems
Publicado em outubro, 22 2020 - 12:59 AM
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 ...
Publicado em outubro, 22 2020 - 8:41 PM
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.