New Framework inheritance problem?

2018-10-06 Thread Jesse Tayler
I’m making a new framework for the first time in forever. I used 
Eclipse->New->ERXFramework as the template...

When I add components, their classes fallback to WOComponent 

I note a class error at startup:

Oct 07 00:04:30 WOMan[5] DEBUG NSLog (EditUser) - 
 WARNING: Unable to 
find component class named "BMLEditLargeString".  If this is not intended to be 
a classless component, check your framework settings and the contents of your 
classpath file (in the .woa's Contents/ subdirectory).


This is due to my new framework not having its classes properly linked into the 
library or something?

Because after a bunch of fussing around in those endless eclipse settings 
panels? I can’t seem to figure why framework classes won’t load but components 
and even D2W rules load into my app just fine?

Suggestions?


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Session Cookies

2018-10-06 Thread Gino Pacitti
Solved…

I just piggy backed on the current response and all is now as it should be…

Thanks for feedback everyone.

Gino 

> On 6 Oct 2018, at 22:12, Gino Pacitti  wrote:
> 
> Yes there was no automatic session wosid being returned even though I was 
> accessing and creating the session in the direct action method.
> 
> I’m aware its because I am creating the WOResponse manually…
> 
> I therefore seem to be avoiding the apps response auto mechanism which adds 
> the cookies to the header. And because of that I think I just need to know 
> how I can nudge WO and get the one of the values, the woinst
> 
> I know how to get the wosid but not the woinst - I think that is from the 
> Adaptor so Im not sure how to access that to supply manually.
> 
> Gino 
> 
> 
>> On 6 Oct 2018, at 22:04, Aaron Rosenzweig > > wrote:
>> 
>> Hi Gino,
>> 
>> Ah, I got a better idea of what you are driving at. 
>> 
>> Your first question is why don’t you see the automatic cookie that WO should 
>> provide? Well if typically you do have it but just not with this direct 
>> action… perhaps the direct action is session-less! maybe it never made a 
>> session!
>> 
>> Now… about the JWT… we go session-less (on purpose) because we don’t want 
>> the user locked into a particular app instance. With JWT you have more 
>> flexibility and can be session less. You can also put some things in the 
>> payload of the JWT.
>> AARON ROSENZWEIG / Chat 'n Bike 
>> e:  aa...@chatnbike.com   t:  (301) 956-2319 
>> 
>>  
>> 
>>> On Oct 6, 2018, at 4:57 PM, Gino Pacitti >> > wrote:
>>> 
>>> Yes I have the path set already but there was no automatic creation of the 
>>> session cookie. I do have the session flags set for cookie session ID and 
>>> in the Direct action accessing the session. So the session is being created 
>>> but no sessionID returned in the headers?
>>> 
>>> I will look at the JWT stuff though…
>>> 
>>> Gino 
>>> 
 On 6 Oct 2018, at 21:55, Aaron Rosenzweig >>> > wrote:
 
 Hi Gino,
 
 Set a path of “/“ for your cookies. Make sure it is available to all 
 within the same top level domain.
 
 You might consider JWT (JSON web tokens) to jump back and forth with your 
 staticly served but dynamic javascript app. 
 
 
 AARON ROSENZWEIG / Chat 'n Bike 
 e:  aa...@chatnbike.com   t:  (301) 956-2319   
 

 
> On Oct 6, 2018, at 4:35 PM, Gino Pacitti  > wrote:
> 
> Well thanks… Jesse
> 
> Unfortunately I am returning a JSON response and so I need something that 
> is actually going to give me back a new session ID and the correct 
> Instance ID so that the browser sets them from that response.
> 
> Thanks anyway…
> 
> Gino
> 
>> On 6 Oct 2018, at 21:27, Jesse Tayler > > wrote:
>> 
>> I have no idea what you’re really asking here, but you need to put data 
>> into hidden text fields if you want to take those values from the request
>> 
>> 
>> 
>>> On Oct 6, 2018, at 4:22 PM, Gino Pacitti >> > wrote:
>>> 
>>> Hi Anyone
>>> 
>>> I’m working on an app that needs a javascript fetch to set a value in 
>>> the session but it is coming from a static HTML page outside the app. 
>>> 
>>> I need to have the session ID and Instance number to be returned and 
>>> set on the browser… Is there a method I can call in my DirectAction 
>>> that will set the headers in the AJAX response so the client will have 
>>> them for the next request I make from that browser window?
>>> 
>>> The current set up creates a new WOResponse where I am setting headers 
>>> but I do not just want to manually create the cookie...
>>> 
>>> Thanks in advance
>>> 
>>> Gino 
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
>>> )
>>> Help/Unsubscribe/Update your Subscription:
>>> https://lists.apple.com/mailman/options/webobjects-dev/jtayler%40oeinc.com
>>>  
>>> 
>>> 
>>> This email sent to jtay...@oeinc.com 
>> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
> )
> Help/Unsubscribe/Update your Subscription:
> 

Re: Session Cookies

2018-10-06 Thread Gino Pacitti
Yes there was no automatic session wosid being returned even though I was 
accessing and creating the session in the direct action method.

I’m aware its because I am creating the WOResponse manually…

I therefore seem to be avoiding the apps response auto mechanism which adds the 
cookies to the header. And because of that I think I just need to know how I 
can nudge WO and get the one of the values, the woinst

I know how to get the wosid but not the woinst - I think that is from the 
Adaptor so Im not sure how to access that to supply manually.

Gino 


> On 6 Oct 2018, at 22:04, Aaron Rosenzweig  wrote:
> 
> Hi Gino,
> 
> Ah, I got a better idea of what you are driving at. 
> 
> Your first question is why don’t you see the automatic cookie that WO should 
> provide? Well if typically you do have it but just not with this direct 
> action… perhaps the direct action is session-less! maybe it never made a 
> session!
> 
> Now… about the JWT… we go session-less (on purpose) because we don’t want the 
> user locked into a particular app instance. With JWT you have more 
> flexibility and can be session less. You can also put some things in the 
> payload of the JWT.
> AARON ROSENZWEIG / Chat 'n Bike 
> e:  aa...@chatnbike.com   t:  (301) 956-2319  
> 
>   
> 
>> On Oct 6, 2018, at 4:57 PM, Gino Pacitti > > wrote:
>> 
>> Yes I have the path set already but there was no automatic creation of the 
>> session cookie. I do have the session flags set for cookie session ID and in 
>> the Direct action accessing the session. So the session is being created but 
>> no sessionID returned in the headers?
>> 
>> I will look at the JWT stuff though…
>> 
>> Gino 
>> 
>>> On 6 Oct 2018, at 21:55, Aaron Rosenzweig >> > wrote:
>>> 
>>> Hi Gino,
>>> 
>>> Set a path of “/“ for your cookies. Make sure it is available to all within 
>>> the same top level domain.
>>> 
>>> You might consider JWT (JSON web tokens) to jump back and forth with your 
>>> staticly served but dynamic javascript app. 
>>> 
>>> 
>>> AARON ROSENZWEIG / Chat 'n Bike 
>>> e:  aa...@chatnbike.com   t:  (301) 956-2319
>>> 
>>> 
>>> 
 On Oct 6, 2018, at 4:35 PM, Gino Pacitti >>> > wrote:
 
 Well thanks… Jesse
 
 Unfortunately I am returning a JSON response and so I need something that 
 is actually going to give me back a new session ID and the correct 
 Instance ID so that the browser sets them from that response.
 
 Thanks anyway…
 
 Gino
 
> On 6 Oct 2018, at 21:27, Jesse Tayler  > wrote:
> 
> I have no idea what you’re really asking here, but you need to put data 
> into hidden text fields if you want to take those values from the request
> 
> 
> 
>> On Oct 6, 2018, at 4:22 PM, Gino Pacitti > > wrote:
>> 
>> Hi Anyone
>> 
>> I’m working on an app that needs a javascript fetch to set a value in 
>> the session but it is coming from a static HTML page outside the app. 
>> 
>> I need to have the session ID and Instance number to be returned and set 
>> on the browser… Is there a method I can call in my DirectAction that 
>> will set the headers in the AJAX response so the client will have them 
>> for the next request I make from that browser window?
>> 
>> The current set up creates a new WOResponse where I am setting headers 
>> but I do not just want to manually create the cookie...
>> 
>> Thanks in advance
>> 
>> Gino 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
>> )
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/webobjects-dev/jtayler%40oeinc.com
>>  
>> 
>> 
>> This email sent to jtay...@oeinc.com 
> 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
 )
 Help/Unsubscribe/Update your Subscription:
 https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
  
 
 
 This email sent to aa...@chatnbike.com 
>>> 
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> 

Re: Session Cookies

2018-10-06 Thread Aaron Rosenzweig
Hi Gino,

Ah, I got a better idea of what you are driving at. 

Your first question is why don’t you see the automatic cookie that WO should 
provide? Well if typically you do have it but just not with this direct action… 
perhaps the direct action is session-less! maybe it never made a session!

Now… about the JWT… we go session-less (on purpose) because we don’t want the 
user locked into a particular app instance. With JWT you have more flexibility 
and can be session less. You can also put some things in the payload of the JWT.
AARON ROSENZWEIG / Chat 'n Bike 
e:  aa...@chatnbike.com   t:  (301) 956-2319



> On Oct 6, 2018, at 4:57 PM, Gino Pacitti  wrote:
> 
> Yes I have the path set already but there was no automatic creation of the 
> session cookie. I do have the session flags set for cookie session ID and in 
> the Direct action accessing the session. So the session is being created but 
> no sessionID returned in the headers?
> 
> I will look at the JWT stuff though…
> 
> Gino 
> 
>> On 6 Oct 2018, at 21:55, Aaron Rosenzweig > > wrote:
>> 
>> Hi Gino,
>> 
>> Set a path of “/“ for your cookies. Make sure it is available to all within 
>> the same top level domain.
>> 
>> You might consider JWT (JSON web tokens) to jump back and forth with your 
>> staticly served but dynamic javascript app. 
>> 
>> 
>> AARON ROSENZWEIG / Chat 'n Bike 
>> e:  aa...@chatnbike.com   t:  (301) 956-2319 
>> 
>>  
>> 
>>> On Oct 6, 2018, at 4:35 PM, Gino Pacitti >> > wrote:
>>> 
>>> Well thanks… Jesse
>>> 
>>> Unfortunately I am returning a JSON response and so I need something that 
>>> is actually going to give me back a new session ID and the correct Instance 
>>> ID so that the browser sets them from that response.
>>> 
>>> Thanks anyway…
>>> 
>>> Gino
>>> 
 On 6 Oct 2018, at 21:27, Jesse Tayler >>> > wrote:
 
 I have no idea what you’re really asking here, but you need to put data 
 into hidden text fields if you want to take those values from the request
 
 
 
> On Oct 6, 2018, at 4:22 PM, Gino Pacitti  > wrote:
> 
> Hi Anyone
> 
> I’m working on an app that needs a javascript fetch to set a value in the 
> session but it is coming from a static HTML page outside the app. 
> 
> I need to have the session ID and Instance number to be returned and set 
> on the browser… Is there a method I can call in my DirectAction that will 
> set the headers in the AJAX response so the client will have them for the 
> next request I make from that browser window?
> 
> The current set up creates a new WOResponse where I am setting headers 
> but I do not just want to manually create the cookie...
> 
> Thanks in advance
> 
> Gino 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
> )
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/webobjects-dev/jtayler%40oeinc.com
>  
> 
> 
> This email sent to jtay...@oeinc.com 
 
>>> 
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
>>> )
>>> Help/Unsubscribe/Update your Subscription:
>>> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
>>>  
>>> 
>>> 
>>> This email sent to aa...@chatnbike.com 
>> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
> 
> This email sent to aa...@chatnbike.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Session Cookies

2018-10-06 Thread Gino Pacitti
Yes I have the path set already but there was no automatic creation of the 
session cookie. I do have the session flags set for cookie session ID and in 
the Direct action accessing the session. So the session is being created but no 
sessionID returned in the headers?

I will look at the JWT stuff though…

Gino 

> On 6 Oct 2018, at 21:55, Aaron Rosenzweig  wrote:
> 
> Hi Gino,
> 
> Set a path of “/“ for your cookies. Make sure it is available to all within 
> the same top level domain.
> 
> You might consider JWT (JSON web tokens) to jump back and forth with your 
> staticly served but dynamic javascript app. 
> 
> 
> AARON ROSENZWEIG / Chat 'n Bike 
> e:  aa...@chatnbike.com   t:  (301) 956-2319  
> 
>   
> 
>> On Oct 6, 2018, at 4:35 PM, Gino Pacitti > > wrote:
>> 
>> Well thanks… Jesse
>> 
>> Unfortunately I am returning a JSON response and so I need something that is 
>> actually going to give me back a new session ID and the correct Instance ID 
>> so that the browser sets them from that response.
>> 
>> Thanks anyway…
>> 
>> Gino
>> 
>>> On 6 Oct 2018, at 21:27, Jesse Tayler >> > wrote:
>>> 
>>> I have no idea what you’re really asking here, but you need to put data 
>>> into hidden text fields if you want to take those values from the request
>>> 
>>> 
>>> 
 On Oct 6, 2018, at 4:22 PM, Gino Pacitti >>> > wrote:
 
 Hi Anyone
 
 I’m working on an app that needs a javascript fetch to set a value in the 
 session but it is coming from a static HTML page outside the app. 
 
 I need to have the session ID and Instance number to be returned and set 
 on the browser… Is there a method I can call in my DirectAction that will 
 set the headers in the AJAX response so the client will have them for the 
 next request I make from that browser window?
 
 The current set up creates a new WOResponse where I am setting headers but 
 I do not just want to manually create the cookie...
 
 Thanks in advance
 
 Gino 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
 )
 Help/Unsubscribe/Update your Subscription:
 https://lists.apple.com/mailman/options/webobjects-dev/jtayler%40oeinc.com 
 
 
 This email sent to jtay...@oeinc.com
>>> 
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
>> )
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com 
>> 
>> 
>> This email sent to aa...@chatnbike.com
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Session Cookies

2018-10-06 Thread Aaron Rosenzweig
Hi Gino,

Set a path of “/“ for your cookies. Make sure it is available to all within the 
same top level domain.

You might consider JWT (JSON web tokens) to jump back and forth with your 
staticly served but dynamic javascript app. 


AARON ROSENZWEIG / Chat 'n Bike 
e:  aa...@chatnbike.com   t:  (301) 956-2319



> On Oct 6, 2018, at 4:35 PM, Gino Pacitti  wrote:
> 
> Well thanks… Jesse
> 
> Unfortunately I am returning a JSON response and so I need something that is 
> actually going to give me back a new session ID and the correct Instance ID 
> so that the browser sets them from that response.
> 
> Thanks anyway…
> 
> Gino
> 
>> On 6 Oct 2018, at 21:27, Jesse Tayler  wrote:
>> 
>> I have no idea what you’re really asking here, but you need to put data into 
>> hidden text fields if you want to take those values from the request
>> 
>> 
>> 
>>> On Oct 6, 2018, at 4:22 PM, Gino Pacitti  wrote:
>>> 
>>> Hi Anyone
>>> 
>>> I’m working on an app that needs a javascript fetch to set a value in the 
>>> session but it is coming from a static HTML page outside the app. 
>>> 
>>> I need to have the session ID and Instance number to be returned and set on 
>>> the browser… Is there a method I can call in my DirectAction that will set 
>>> the headers in the AJAX response so the client will have them for the next 
>>> request I make from that browser window?
>>> 
>>> The current set up creates a new WOResponse where I am setting headers but 
>>> I do not just want to manually create the cookie...
>>> 
>>> Thanks in advance
>>> 
>>> Gino 
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>> Help/Unsubscribe/Update your Subscription:
>>> https://lists.apple.com/mailman/options/webobjects-dev/jtayler%40oeinc.com
>>> 
>>> This email sent to jtay...@oeinc.com
>> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
> 
> This email sent to aa...@chatnbike.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Session Cookies

2018-10-06 Thread Gino Pacitti
Well thanks… Jesse

Unfortunately I am returning a JSON response and so I need something that is 
actually going to give me back a new session ID and the correct Instance ID so 
that the browser sets them from that response.

Thanks anyway…

Gino

> On 6 Oct 2018, at 21:27, Jesse Tayler  wrote:
> 
> I have no idea what you’re really asking here, but you need to put data into 
> hidden text fields if you want to take those values from the request
> 
> 
> 
>> On Oct 6, 2018, at 4:22 PM, Gino Pacitti  wrote:
>> 
>> Hi Anyone
>> 
>> I’m working on an app that needs a javascript fetch to set a value in the 
>> session but it is coming from a static HTML page outside the app. 
>> 
>> I need to have the session ID and Instance number to be returned and set on 
>> the browser… Is there a method I can call in my DirectAction that will set 
>> the headers in the AJAX response so the client will have them for the next 
>> request I make from that browser window?
>> 
>> The current set up creates a new WOResponse where I am setting headers but I 
>> do not just want to manually create the cookie...
>> 
>> Thanks in advance
>> 
>> Gino 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/webobjects-dev/jtayler%40oeinc.com
>> 
>> This email sent to jtay...@oeinc.com
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Session Cookies

2018-10-06 Thread Jesse Tayler
I have no idea what you’re really asking here, but you need to put data into 
hidden text fields if you want to take those values from the request



> On Oct 6, 2018, at 4:22 PM, Gino Pacitti  wrote:
> 
> Hi Anyone
> 
> I’m working on an app that needs a javascript fetch to set a value in the 
> session but it is coming from a static HTML page outside the app. 
> 
> I need to have the session ID and Instance number to be returned and set on 
> the browser… Is there a method I can call in my DirectAction that will set 
> the headers in the AJAX response so the client will have them for the next 
> request I make from that browser window?
> 
> The current set up creates a new WOResponse where I am setting headers but I 
> do not just want to manually create the cookie...
> 
> Thanks in advance
> 
> Gino 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/webobjects-dev/jtayler%40oeinc.com
> 
> This email sent to jtay...@oeinc.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: javascript popup menu for a grid

2018-10-06 Thread Samuel Pelletier
Hi Aaron,

SPA app is something I will certainly use sometime in the future but there are 
some challenges with data freshness and complex business logic I expect.

EOF change propagation inside an app is very cool and a simple refresh of html 
make sure the user see ups to data data. 

I finally found a way to get a good compromise using AjaxInPlace with a 
position: absolute editor and a small script to adjust it's position (my table 
is inside a scrolling div)

Here is a table cell content:


d1003444Edit = AUL.updateFunc('d1003444', {}, 
'6.0.1.13.5.0.1.2.0.0.1.7.40584489.3.54916483.1.2.1.1.2');






AUC.register('d1003444');


The editor script that adjust the DIV top and hide the tooltip that may be 
displayed :
erxToolTip.hide();
editorTop = jQuery('#d1005038').offset().top - 
jQuery('#d1005038').offsetParent().offset().top;
jQuery('#d1005038 .floatingEditor')[0].style.top = editorTop + 'px'

I had to fix a problem in erxToolTip.hide() function that raised an error when 
no tooltips had been displayed.

The overhead is not bad, the d is an id from the displayed entity primary 
key.

Regards,

Samuel


> Le 4 oct. 2018 à 21:26, Aaron Rosenzweig  a écrit :
> 
> Hi Samuel,
> 
> If I understand your concerns:
> 
> 1) Do not want lots of DOM elements - would slow down the tablet / computer.
> 
> 2) Do not want WO to deliver a huge HTML either - likewise don’t want to use 
> the Wonder ajax components.
> 
> Then what you need is a single page app (SPA) that sends individual calls to 
> the server (either Direct Actions or REST routes which are close cousins). 
> 
> We have been using ENYO to do something like this where you click on a div 
> and then it morphs into something else then after you make your selection it 
> returns the DOM back to a single div. ENYO also has the ability to have 
> infinite scrollable lists of thousands of objects because it dynamically 
> brings them into the DOM and discards the others. 
> 
> React and Angular could also do this.
> 
> Polymer too.
> 
> There is a learning curve.
> 
> ENYO never made mainstream but I like it the most. The masterminds left and 
> started Polymer at Google but it isn’t the same. You don’t do any HTML with 
> Enyo and you have the cool Ares IDE written in Enyo. I’m sure Angular is nice 
> (v1 or v2) but it didn’t connect with me. React works but you are hand coding 
> HTML… at least it is in one JS file. React also doesn’t have UI widgets, you 
> have to make those yourself. 
> 
> In one of our projects we had very dynamic forms and too much going on. 
> Really put a strain on our servers. Now we let the client do the heavy 
> lifting and when the data is done we send it back home and validate it. Works 
> much better for high volume / lots of interactivity because you aren’t asking 
> WO to make the UI… only vend data. 
> AARON ROSENZWEIG / Chat 'n Bike 
> e:  aa...@chatnbike.com   t:  (301) 956-2319
>   
> 
>> On Oct 4, 2018, at 5:40 PM, Samuel Pelletier > > wrote:
>> 
>> Hi all,
>> 
>> I want to build a grid of resource availability with a coloured status for 
>> each cell and allow fast editing of each cell status. I would like to 
>> display a popup with the status choices when the user click on a cell and 
>> get the selection back.
>> 
>> This grid will contains few hundred cells so I do not want to create the 
>> popup content for each cell. I would like to use some javascript to build 
>> the popup content and display it at the expected location when the user 
>> click a cell and pass enough information to retrace the edited cell.
>> 
>> I can easily find drop down libraries but they all seems intended for page 
>> navigation without hook required to pass data and handle the selection.
>> 
>> Is there a library with such module available ?
>> 
>> Thanks,
>> 
>> Samuel
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
>> )
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com 
>> 
>> 
>> This email sent to aa...@chatnbike.com
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Session Cookies

2018-10-06 Thread Gino Pacitti
Hi Anyone

I’m working on an app that needs a javascript fetch to set a value in the 
session but it is coming from a static HTML page outside the app. 

I need to have the session ID and Instance number to be returned and set on the 
browser… Is there a method I can call in my DirectAction that will set the 
headers in the AJAX response so the client will have them for the next request 
I make from that browser window?

The current set up creates a new WOResponse where I am setting headers but I do 
not just want to manually create the cookie...

Thanks in advance

Gino 
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com