PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WEBDEV 2024 → Share info between browser and server code
Share info between browser and server code
Started by Yaroslav Alpizar, Feb., 26 2008 5:58 PM - 2 replies
Posted on February, 26 2008 - 5:58 PM
I need to show in a tooltip at runtime several data that I have previously saved in arrays on the server code.

How can I get the data in those arrays so I can use them on my jscript functions on the browser coder?

Thanks!
Posted on February, 26 2008 - 6:23 PM
Hi Yaroslav...

Either you store them in a hidden field in the init code of the page
(server side) and they will be available anytime on the browser, or you
request them just in time using ajaxexecute...

Best regards

--
Fabrice Harari
International WinDev, WebDev and WinDev mobile Consulting

More information on http://www.fabriceharari.com


Yaroslav Alpizar wrote:
I need to show in a tooltip at runtime several data that I have previously saved in arrays on the server code.

How can I get the data in those arrays so I can use them on my jscript functions on the browser coder?

Thanks!
Posted on February, 27 2008 - 1:09 PM
Thanks again Fabrice, will try both options.