GridPager's zone

2011-05-12 Thread nquirynen
Hey, I have a page with a grid which is in a zone. I have also above this zone some filters; they all update the zone with AJAX: onChange="$('frmFilter').fire(Tapestry.FORM_PROCESS_SUBMIT_EVENT);" And in the onSubmit i return zone.getBody(); This all works fine. But now I only need the GridPag

tapestry chenillekit chart with flotr : HtmlText to false not working

2011-05-12 Thread joknroll
Hi every one, I need help to display chart in tapestry pages. I'm using tapestry 5.2.4 and chenillkit 1.3.0. My problem is that the option HtmlText : false seems not working. It's the only option that is not be taken into account, except the labelsAngle wich work with HtmlText to false. Does some

Re: Blog Post: Tapestry Magic #1

2011-05-12 Thread antalk
Hi Taha, Am i correct that with the multidatabase module in place AND the tapestry-hibernate module , the session injection does not work anymore because the tap-hibernate module defines a Session implementation which gets injected before the MasterObjectProvider gets called ? Thx, Antal -- Vie

Re: t5: T5 friendly e commerce software?

2011-05-12 Thread Ben Gidley
If you are after billing and subscriptions you should consider something like Zuora. They offer eCommerce as a SaaS and it is basically just a webservices API to let you get the data to render. On Wed, May 11, 2011 at 5:57 PM, Erol Akarsu wrote: > Hi Lutz, > > Do you have plan to share surce co

Re: Blog Post: Tapestry Magic #1

2011-05-12 Thread Taha Hafeez
Hi Antal The multidatabase module is just a modification of tapestry-hibernate module. Both can't work together. The changes in multidatabase module have to be incorporated into tapestry-hibernate and that is what my dev-mail was all about. regards Taha On Thu, May 12, 2011 at 3:25 PM, antalk w

Re: Blog Post: Tapestry Magic #1

2011-05-12 Thread antalk
Ok, No problem, i have them now running both at the same time (with some slight modifications to ur classes, wrapped up in a separate module). Which is why i encountered this issue. I guess i'm gonna make an extra Session interface which extends the hibernate session interface and then have the H

Re: Blog Post: Tapestry Magic #1

2011-05-12 Thread Taha Hafeez
If you want multiple database support with autogenerated/configurable dao, do take a look at http://code.google.com/p/tawus/ regards Taha On Thu, May 12, 2011 at 5:33 PM, antalk wrote: > Ok, > > No problem, i have them now running both at the same time (with s

Beandisplay - set CSS class to specific items

2011-05-12 Thread nquirynen
Hi, I have a beandisplay where I'd like to set the css class of for example an integer field where value > 100. Is this possible? Or any hints on how i might achieve this would be appreciated as I have no clue. Thanks! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Bean

Re: Blog Post: Tapestry Magic #1

2011-05-12 Thread antalk
This is something we already have (wrote it myself) but your multi session stuff looks cleaner than what i did for our project. The Tawus module seems good but 'not production ready' and this code i'm working on is going to production. Also it probably requires a lot of rewriting in our webapp (ti

Re: t5: T5 friendly e commerce software?

2011-05-12 Thread Adam Zimowski
We also have been discussing open-sourcing our eCommerce platform. Our company is porting current Struts/Spring implementation to Tapestry 5. Our current sites, which are being ported are: www.chdist.com www.avenuesupply.ca www.industrialsupplies.com All three run on the same platform, customized

Portlets and Tapestry-Javascript issues

2011-05-12 Thread Moritz Gmelin
Hi, my tapestry/portlets project is advancing quite a bit. I'm currently stuck at a page that contains 3 portlets, each being generate from one tapestry page. One of the portlets contains a form that does some default tapestry javascript form validation (checking whether an integer form really c

Auto Refresh Zone?

2011-05-12 Thread ael
Is it possible to create a page with a zone but the content of the zone will refresh automatically? I mean maybe every 10 seconds? Or should i create a button then a javascript will click that button every 10 seconds? What is the best options? -- View this message in context: http://tapestry.10

Re: Portlets and Tapestry-Javascript issues

2011-05-12 Thread Josh Canfield
I guess it depends on how your portal is rendering the portlets? If it's true that your form works if it's the last thing loaded then you're probably getting some variables trounced as each portlet loads. You could also possibly have element id collisions? Hard to tell without your code. Can you b

Re: Auto Refresh Zone?

2011-05-12 Thread Taha Tapestry
Use a periodical timer. There is an example in one of the mails in the mailing list Regards Taha Sent from my iPhone On May 13, 2011, at 3:56 AM, ael wrote: > Is it possible to create a page with a zone but the content of the zone will > refresh automatically? I mean maybe every 10 seconds? O

Re: Auto Refresh Zone?

2011-05-12 Thread ael
Good Job Taha Thanks :) Components /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.dash.tapestryprogressupdate.components; import org.apache.tapestry5.BindingConstants; import org.apache.tapestry5.ComponentResources; import org.apac