Re: [Pharo-users] passing json from seaside to javascript

2015-01-16 Thread sergio_101
oh! i was going to write the javascript function in an included javascript file.. i didn't know you could define javascript functions on the seaside side.. On Fri Jan 16 2015 at 11:59:15 AM Esteban A. Maringolo wrote: > I'm writing without testing it, but I think it might work: > > Option A. > 1

Re: [Pharo-users] passing json from seaside to javascript

2015-01-16 Thread Esteban A. Maringolo
I'm writing without testing it, but I think it might work: Option A. 1. Create a named, global javascript function from Seaside that will be called as the callback for the "control changed" event. 2. Within that global function perform an AJAX JSON call to seaside and pass its response to the java

Re: [Pharo-users] passing json from seaside to javascript

2015-01-16 Thread sergio_101
hi, esteban.. the json object is a representation of the pharo object. i just need to get that json object (in its updated form) available to a javascript function.. the pseudo code for javascript would be something like: control changed update json object (pharo/seaside does this) rerender sec

Re: [Pharo-users] passing json from seaside to javascript

2015-01-16 Thread Esteban A. Maringolo
Sergio, I don't fully understand what you need to do. 1. Do you need to pass a JSON object to a globally accessible javascript function? 2. Is the JSON object dynamically generated as a response to an AJAX call? Regards! Esteban A. Maringolo 2015-01-16 12:11 GMT-03:00 sergio_101 : > i am

[Pharo-users] passing json from seaside to javascript

2015-01-16 Thread sergio_101
i am currently working on an app that uses a javascript library to render the state of an object inside seaside. i am trying to figure out the best way to transfer the state of object to javascript. the state of the machine changes via form inputs and ajax. i already have the code to convert the