Append Above

This sub-forum is for discussing all topics related to AppGini Helper JavaScript Library, provided by bizzworxx as a third-party AppGini plugin.
Post Reply
angus
Veteran Member
Posts: 128
Joined: 2020-05-28 22:27

Append Above

Post by angus » 2022-03-17 15:21

hello everyone,

I am using the code below. But rather than a static text field I want to pull a value from a table, is this possible?

Code: Select all

  new AppGiniField("Team")
.insertAbove()
.alert("Test", Variation.info); 
AppGini 22.13

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1807
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

Re: Append Above

Post by jsetzer » 2022-03-17 15:49

Sure, create a serveride PHP script which evaluates the REQUEST parameters, fetches data and returns results for example as JSON.

Then, on client side, call that serverside script and pass your args using AJAX. Wait for the JSON response and then whatever you want on clientside.
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.10 Revision 1579 + all AppGini Helper tools

Post Reply