PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WEBDEV 2024 → llamar procedimientos wlanguaje desde javascript
llamar procedimientos wlanguaje desde javascript
Started by Chura WALLY, Oct., 22 2020 12:59 AM - 1 reply
Registered member
4 messages
Posted on October, 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 ...
Posted on October, 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.