Re: Is it possible to connect a dojo SortableTable to Tapestry 4.1.1 ?

2006-09-12 Thread Gerald Schöffel
ce for a good example. http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/dojo/ On 9/11/06, Gerald Schöffel <[EMAIL PROTECTED]> wrote: Hi Ben, thank you for your reply ! I tried it right away ... Would be too cool if this will wor

Re: Is it possible to connect a dojo SortableTable to Tapestry 4.1.1 ?

2006-09-10 Thread Gerald Schöffel
ary Gary, If you change @EventListener(events="onSelect", elements="addressTable") to @EventListener(events="onSelect", targets="addressTable") then Tapestry will render the event script using dojo.widget.ByID (elements hooks to html elements, targets hooks t

Re: Is it possible to connect a dojo SortableTable to Tapestry 4.1.1 ?

2006-09-10 Thread Gerald Schöffel
he meantime: if anyone has an idea ... please let me know. :-) Bye Gary The table won't be parsed into a dojo widget by default. (Tapestry turns this off..) You can probably add a single line of js to parse it out though: dojo.widget.createWidget(dojo.byId("addressTable")); On 9/

Re: Is it possible to connect a dojo SortableTable to Tapestry 4.1.1 ?

2006-09-10 Thread Gerald Schöffel
et.createWidget(dojo.byId("addressTable")); On 9/10/06, Gerald Schöffel <[EMAIL PROTECTED]> wrote: Hi there ! I am trying to connect a dojo SortableTable via the @EventListener annotation to Tapestry (4.1.1, latest build from svn). In my component html file I have something like t

Re: Is it possible to connect a dojo SortableTable to Tapestry 4.1.1 ?

2006-09-10 Thread Gerald Schöffel
Sorry for this one :-) Should be: '... with much effort but no success ... ' :-) I trying to do so the whole evening - without effort :( Bye, Gary - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

Is it possible to connect a dojo SortableTable to Tapestry 4.1.1 ?

2006-09-10 Thread Gerald Schöffel
Hi there ! I am trying to connect a dojo SortableTable via the @EventListener annotation to Tapestry (4.1.1, latest build from svn). In my component html file I have something like this: widgetId="tableWidget" headClass="fixedHeader" tbodyClass="scrollContent" enableMultipleSele

AW: http/https jsessionid - issue with Apache/Tomcat

2006-06-02 Thread Gerald Schöffel
Sorry, late at night :) Naturally I wan't to reconfigure Tomcat ... not Apache ... >Hi ! > >I have the following problem: > >Inside the direct link listener of my login page (scheme https) I validate the >user input and create an visit ASO an success. > >So a session is created and stored via a

http/https jsessionid - issue with Apache/Tomcat

2006-06-02 Thread Gerald Schöffel
Hi ! I have the following problem: Inside the direct link listener of my login page (scheme https) I validate the user input and create an visit ASO an success. So a session is created and stored via a cookie on the browser. When leaving the https scheme, the jsessionid is lost, because the co

Re: How to implement a 'application property with persistence strategy client:app' ?

2006-05-31 Thread Gerald Schöffel
some internal design. I opened an JIRA issue http://issues.apache.org/jira/browse/TAPESTRY-729. Is there any chance for this to make it for tapestry 4.1? Henri. On 5/30/06, Gerald Schöffel <[EMAIL PROTECTED]> wrote: Hi Norbert, thank you for your quick reply ! The problem with "cli

Re: How to implement a 'application property with persistence strategy client:app' ?

2006-05-30 Thread Gerald Schöffel
rote: What about the strategy "client:app"? If not then check out ClientPropertyPersistenceStrategy and the related classes for reference (eg. how to add a value into every URL). Regards, Norbi Gerald Schöffel wrote: Hi there ! I need to persist a application-scope property on the client

How to implement a 'application property with persistence strategy client:app' ?

2006-05-30 Thread Gerald Schöffel
Hi there ! I need to persist a application-scope property on the client side, without using of a session and/or an ASO and without a reference to a specific page. In fact I need to be able to compare a value stored in a visit-ASO with the persisted property send from the client. This prope