Re: tapestry jquery PageScroll

2016-03-20 Thread Robert Jakeš
Thank you for reply. I was not aware of tests for tapestry5-jquery > I guess that you get your code form the sample at > > https://github.com/got5/tapestry5-jquery/blob/master/src/test/resources/org/got5/tapestry5/jquery/pages/PageScroll.tml I manage to get it working, but now it's trying to f

Re: tapestry jquery PageScroll

2016-03-20 Thread françois facon
There is some documentation from the author of this component available at https://tawus.wordpress.com/2012/11/25/scrolling-pages-tapestry5-onscrollbeyond/ if you have a look at the source doc, https://github.com/got5/tapestry5-jquery/blob/master/src/main/java/org/got5/tapestry5/jquery/components/

tapestry jquery PageScroll

2016-03-15 Thread Robert Jakeš
I am trying to use tapestry5 jquery component PageScroll for infinite scrolling. - tapestry5 - 5.3.8 - tapestry5-jquery - 3.4.2 So far i got this: public class PageScrollDemo { private static final int PageSize = 100; @Property private int value; @OnEvent("nextPage")

tapestry jquery PageScroll

2016-03-15 Thread Robert Jakeš
I am trying to use tapestry5 jquery component PageScroll for infinite scrolling. - tapestry5 - 5.3.8 - tapestry5-jquery - 3.4.2 So far i got this: public class PageScrollDemo { private static final int PageSize = 100; @Property private int value; @OnEvent("nextPage")

Re: Tapestry Jquery Bind

2013-05-23 Thread Boris Horvat
This seems to have fixed the problem. Thanks On Thu, May 23, 2013 at 10:01 AM, Emmanuel DEMEY wrote: > Hi, > you can use the last snapshot I have deployed. 3.3.7-SNAPSHOT I think. > > Manu > > > 2013/5/22 Boris Horvat > > > Hi Manu, > > > > Is this pushed somewhere so I can just use maven or sh

Re: Tapestry Jquery Bind

2013-05-23 Thread Emmanuel DEMEY
Hi, you can use the last snapshot I have deployed. 3.3.7-SNAPSHOT I think. Manu 2013/5/22 Boris Horvat > Hi Manu, > > Is this pushed somewhere so I can just use maven or should I download the > code and build it? > > Cheers > > > On Wed, May 22, 2013 at 9:47 AM, Emmanuel DEMEY >wrote: > > > b

Re: Tapestry Jquery Bind

2013-05-22 Thread Boris Horvat
Hi Manu, Is this pushed somewhere so I can just use maven or should I download the code and build it? Cheers On Wed, May 22, 2013 at 9:47 AM, Emmanuel DEMEY wrote: > but I think the value of your sent will not be sent. I have just pushed a > small patch : https://github.com/got5/tapestry5-jqu

Re: Tapestry Jquery Bind

2013-05-22 Thread Jens Breitenstein
Hi All! I struggeld with something similar for some days maybe it helps you to see how I solved my problem and maybe you can reuse something...Basically I tried to find a work around for the autocomplete mixin limitations, which just accepts string as return type, thus rendering complex value

Re: Tapestry Jquery Bind

2013-05-22 Thread Emmanuel DEMEY
but I think the value of your sent will not be sent. I have just pushed a small patch : https://github.com/got5/tapestry5-jquery/issues/295 Can you test it ? Manu 2013/5/22 Barry Books > You have to pass in the context > > t:mixins="jquery/bind" t:event="change" t:eventType="change" t:zone=

Re: Tapestry Jquery Bind

2013-05-21 Thread Barry Books
You have to pass in the context On Tue, May 21, 2013 at 2:23 PM, Boris Horvat wrote: > Well spoke too soon > > > ${textZone} > > >t:mixins="jquery/bind" t:event="change" t:eventType="change" t:zone="zone" > /> > > > -- > > @Property > @Persist > private

Re: Tapestry Jquery Bind

2013-05-21 Thread Boris Horvat
Well spoke too soon ${textZone} -- @Property @Persist private String textZone; @InjectComponent private Zone zone; @OnEvent(value = "change") public Object change(String value) { textZone = value; return zone.getBody();

Re: Tapestry Jquery Bind

2013-05-21 Thread Boris Horvat
Nah that is not the problem. When I have changed from onchange to change it triggered the ajax request. So I guess I should remove 'on' from my events. Thanks for help your example shad light on this :D Cheers On Tue, May 21, 2013 at 8:55 PM, Jan Fryblik wrote: > > > I'm just guessing, but tr

Re: Tapestry Jquery Bind

2013-05-21 Thread Jan Fryblik
I'm just guessing, but try to put there also attribute id. Its often worked for me. ${textZone} BR, Jan On Tue, 21 May 2013 20:49:56 +0200, Boris Horvat wrote: I have tried with prefix t: and it has nothing to do with that (it is not really mandatory as far as

Re: Tapestry Jquery Bind

2013-05-21 Thread Boris Horvat
I have tried with prefix t: and it has nothing to do with that (it is not really mandatory as far as I know). But I stilled tried it. The zone name is also correct. The thing is that when I try to debug it the even it never triggered, so it cant be the zone related problem that is for sure. On Tu

Re: Tapestry Jquery Bind

2013-05-21 Thread Dmitry Gusev
Is it zone="testzone" vs t:zone="testzone" ? the same for these attributes: event="onchange" eventType="onfocus" looks like you forget to add "t:" prefix Also make sure you've specified correct zone client id, try the same as in Barry's example, using ${zoneSlideChange.clientId}. On Tue, May

Re: Tapestry Jquery Bind

2013-05-21 Thread Boris Horvat
Yea your example works, but mine does not and I cant see any difference. Do you have any idea? On Tue, May 21, 2013 at 4:34 AM, Barry Books wrote: > Here is my old test case > > > click OK > > > t:eventType="c

Re: Tapestry Jquery Bind

2013-05-20 Thread Barry Books
Here is my old test case click OK click test @InjectComponent @Property private org.apache.tapestry5.corelib.components.Zone clickZone; @Inject private Logger logger; @OnEvent(value="click")

Tapestry Jquery Bind

2013-05-20 Thread Boris Horvat
Did anyone used this? I cant use the example in the tapestry5-jquery as it complains that slider is not a mixin, so I guess that the example is old as slider is now a component. Still I have tried to use ${textZone} @Property @Persist private String te

Re: tapestry-Jquery datatables rowclick event

2013-05-16 Thread Barry Books
I suspect you can do this with the jQuery bind mixin. It binds jQuery events to Tapestry event handlers On Thu, May 16, 2013 at 7:47 AM, Lance Java wrote: > I've not used the jquery datatable but have solved this problem with the > grid here: http://tapestry-stitch.uklance.cloudbees.net/griddeco

Re: tapestry-Jquery datatables rowclick event

2013-05-16 Thread Lance Java
I've not used the jquery datatable but have solved this problem with the grid here: http://tapestry-stitch.uklance.cloudbees.net/griddecoratordemo If it's not supported out of the box with datagrid, you could do something similar (perhaps adding a "data-" attribute to each row).

Re: tapestry-Jquery datatables rowclick event

2013-05-16 Thread Emmanuel DEMEY
It is not out of the box. But you can maybe create a mixin used with the DataTable. Here a sample : http://datatables.net/forums/discussion/1838/x 2013/5/16 Tom Nys > Hi there > > I'm using the datatables component from tapestry5-Jquery but I can't find > a way to trigger a tapestry event when

tapestry-Jquery datatables rowclick event

2013-05-16 Thread Tom Nys
Hi there I'm using the datatables component from tapestry5-Jquery but I can't find a way to trigger a tapestry event when clicked on a row. Is there a plugin that will do this? or what should i do to get this to work? Greets Tom

Re: Tapestry-Jquery datatable detail row.

2013-02-12 Thread George Christman
At this point, I think I'm on my own. I'll keep you posted :) -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-datatable-detail-row-tp5719938p5719983.html Sent from the Tapestry - User mailing list archive at

Re: Tapestry-Jquery datatable detail row.

2013-02-12 Thread Emmanuel DEMEY
uggestion to the Tap team to add that > parameter. For the time being, I'm just going to create my own AjaxFormLoop > component so I can complete the upgrade and finish the detail row up. > > > > > -- > View this message in context: > http://tapestry.1045711.n5.n

Re: Tapestry-Jquery datatable detail row.

2013-02-12 Thread George Christman
wn AjaxFormLoop component so I can complete the upgrade and finish the detail row up. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-datatable-detail-row-tp5719938p5719979.html Sent from the Tapestry - User mailing list archiv

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread Emmanuel DEMEY
row. The older version of tap-jquery doesn't > support detail, but currently unable to upgrade to the newer tap-jquery > version do to the above github issue. > > > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-datatable-de

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread George Christman
do to the above github issue. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-datatable-detail-row-tp5719938p5719950.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread George Christman
Okay, I'll get this working and donate the code. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-datatable-detail-row-tp5719938p5719945.html Sent from the Tapestry - User mailing list archive at Nabbl

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread George Christman
nt handler. Does this seem like a good approach to you? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-datatable-detail-row-tp5719938p5719944.html Sent from the Tapestry - User mailing list archive at

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread George Christman
'+aData[1]+' '+aData[4]+''; sOut += ' Link to source: Could provide a link here'; sOut += ' Extra info: And any further details here (images etc)'; sOut += ' '; return sOut; } -- View this message in con

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread Emmanuel DEMEY
. Manu 2013/2/11 George Christman > I've currently setup my datatable using the tapestry-jquery datatable > component. I'm looking to create a detail row which is nothing other than a > new tr row added below each result. Does anybody know of a good approach to > add the a

Tapestry-Jquery datatable detail row.

2013-02-11 Thread George Christman
I've currently setup my datatable using the tapestry-jquery datatable component. I'm looking to create a detail row which is nothing other than a new tr row added below each result. Does anybody know of a good approach to add the additional tr row after every result without the use of

Re: Tapestry-Jquery Datatable Configuration

2013-02-05 Thread Emmanuel DEMEY
nRowCallback(){ > var fnRowCallback = function( nRow, aData, iDisplayIndex, > iDisplayIndexFull ) { > if (aData["rush"] == "Rush" ) { > nRow.className = nRow.className + " gradeX"; > } >

Re: Tapestry-Jquery Datatable Configuration

2013-02-05 Thread George Christman
nRow.className = nRow.className + " gradeX"; } }; return fnRowCallback; } -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-Datatable-Configuration-tp5719753p5719776.html Sent from the Tapestry - User mailing list archive at N

Tapestry-Jquery Datatable Configuration

2013-02-04 Thread George Christman
Hello everyone. I'm using Tapestry-Jquery and I'm trying to configure my datatable to use fnRowCallback. The idea behind fnRowCallback is to style a row based on cell data. In my case if a purchase order is a rush, add a class to the row styling it to red. The datatable example in th

Re: datatables tapestry-jquery refresh

2013-01-31 Thread rosecorp
Thanks Manu, I'll give it a go and write what was a result. -- View this message in context: http://tapestry.1045711.n5.nabble.com/datatables-tapestry-jquery-refresh-tp5719681p5719697.html Sent from the Tapestry - User mailing list archive at Nabbl

Re: datatables tapestry-jquery refresh

2013-01-31 Thread Emmanuel DEMEY
Cheers, > Manu. > > > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/datatables-tapestry-jquery-refresh-tp5719681p5719695.html > Sent from the Tapestry - User mailing list archive at Nabble.com. > > --

Re: datatables tapestry-jquery refresh

2013-01-31 Thread rosecorp
ct way. Cheers, Manu. -- View this message in context: http://tapestry.1045711.n5.nabble.com/datatables-tapestry-jquery-refresh-tp5719681p5719695.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsub

Re: datatables tapestry-jquery refresh

2013-01-31 Thread Emmanuel DEMEY
nality on place where I remove a record from > datatables(server-side support). What's the easiest way to refresh it after > deleting a record? > > Thanks a lot for any suggestions... > > > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/

datatables tapestry-jquery refresh

2013-01-30 Thread rosecorp
Guys, I have functionality on place where I remove a record from datatables(server-side support). What's the easiest way to refresh it after deleting a record? Thanks a lot for any suggestions... -- View this message in context: http://tapestry.1045711.n5.nabble.com/datatables-tap

Re: tapestry jQuery theme

2013-01-29 Thread John
Y_UI_DEFAULT_THEME, "context:themes/smoothness/jquery-ui.css"); John - Original Message - From: Emmanuel DEMEY To: Tapestry users Sent: Tuesday, January 29, 2013 9:43 AM Subject: Re: tapestry jQuery theme you can have a look too the tapestry5-jquery-demo project : https

Re: tapestry jQuery theme

2013-01-29 Thread Emmanuel DEMEY
--- Original Message - > From: Emmanuel DEMEY > To: Tapestry users > Sent: Monday, January 28, 2013 7:36 PM > Subject: Re: tapestry jQuery theme > > > You can override the JQuerySymbolConstants.JQUERY_UI_DEFAULT_THEME > constant > in your AppModule : > >

Re: tapestry jQuery theme

2013-01-29 Thread John
From: Emmanuel DEMEY To: Tapestry users Sent: Monday, January 28, 2013 7:36 PM Subject: Re: tapestry jQuery theme You can override the JQuerySymbolConstants.JQUERY_UI_DEFAULT_THEME constant in your AppModule : https://github.com/got5/tapestry5-jquery/blob/master/src/main/java/org/got5/tape

Re: tapestry jQuery theme

2013-01-28 Thread Emmanuel DEMEY
- > From: Steve Eynon > To: Tapestry users > Sent: Monday, January 28, 2013 7:59 AM > Subject: Re: tapestry jQuery theme > > > I'm assuming you know that, by default, T.3 doesn't use jQuery - so > which library are you u

Re: tapestry jQuery theme

2013-01-28 Thread Steve Eynon
I'm assuming you know that, by default, T.3 doesn't use jQuery - so which library are you using to import jQuery. Could you be more specific with your question? - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For

Re: Tapestry-jquery ajax validation

2013-01-20 Thread rosecorp
Hello, do you still have that problem? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-jquery-ajax-validation-tp5718946p5719394.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: Tapestry-jquery ajax validation

2013-01-09 Thread fmaylinch
ry only validates the built in validations like "required" and so. Do I need to use the CustomForm and CustomError components to use the AjaxValidator? Thank you very much for your help, Ferran -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-jquery-aja

Re: Tapestry-jquery ajax validation

2012-12-25 Thread rosecorp
('#%s').configureValidators('%s')", clientId, link.toURI()); } } Thanks, R -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-jquery-ajax-validation-tp5718946p5718980.html Sent from the Tapestry - User mailing list archive at Nabb

Re: Tapestry-jquery ajax validation

2012-12-24 Thread Lenny Primak
ors1 > in tapestry-jquery manner please let me know or ask question in this topic I > will surely help. > > Thanks, > R. > > > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Tapestry-jquery-ajax-validation-tp5718946p5718949.html &g

Re: Tapestry-jquery ajax validation

2012-12-24 Thread rosecorp
Guys, it was my mistake I was initializing js function in a wrong way. If anyone will have problems using http://jumpstart.doublenegative.com.au/jumpstart/examples/ajax/validators1 in tapestry-jquery manner please let me know or ask question in this topic I will surely help. Thanks, R. -- View

Tapestry-jquery ajax validation

2012-12-23 Thread rosecorp
Hi Guys, is it a correct way to call showValidationMessage method from validation.js from tapestry-jquery? Even if I try to call that method manually in debug mode it dosen't seems to be calling showValidationMessage method. Here is a code how it's done in jquery:

Re: tapestry-jquery accordion height problem

2012-11-29 Thread rosecorp
Hi Emmanuel, Your suggestion is correct, I've updated jquery accordia ui to latest one and that made a trick, Thanks! -- View this message in context: http://tapestry.1045711.n5.nabble.com/tapestry-jquery-accordion-height-problem-tp5718378p5718404.html Sent from the Tapestry - User ma

Re: tapestry-jquery accordion height problem

2012-11-29 Thread Emmanuel DEMEY
Hi Guys, > > I have a problem with height of first tab using tapestry-jquery accordion > component. It always gets size of TitleB tab but when I click on TabB and > back on TabA height of TabA is refreshed and height is rendered correctly. > Below I've attached sample code h

Re: Tapestry-JQuery: use of GoogleMap component

2012-11-24 Thread David Canteros
Sorry for the delay on the Tapestry5-jQuery mailing list. I will try to > > find a solution right now. > > > > > > 2012/11/23 David Canteros > > > >> Thank you for your answers! > >> > >> I didn't know about the exanpe library, i looks very g

Re: Tapestry-JQuery: use of GoogleMap component

2012-11-23 Thread Emmanuel DEMEY
Sorry for the delay on the Tapestry5-jQuery mailing list. I will try to find a solution right now. 2012/11/23 David Canteros > Thank you for your answers! > > I didn't know about the exanpe library, i looks very good! > However I'm already using Tapestry-Jquery so I

Re: Tapestry-JQuery: use of GoogleMap component

2012-11-23 Thread David Canteros
Thank you for your answers! I didn't know about the exanpe library, i looks very good! However I'm already using Tapestry-Jquery so I'll try first the solution proposed by arterzatij. The tapestry-jquery developers should be noticed about this problem,I posted this on the goog

Re: Tapestry-JQuery: use of GoogleMap component

2012-11-23 Thread Lance Java
I haven't used the gmap in tapestry-jquery but I have used the gmap component from exanpe without any trouble at all. Demo: http://exanpe-t5-lib.appspot.com/components/googlemap/example2 Source: https://github.com/exanpe/exanpe-t5-lib Demo Source: https://github.com/exanpe/exanpe-t5

Re: Tapestry-JQuery: use of GoogleMap component

2012-11-22 Thread arterzatij
I found the same problem with the component, so what I did, I changed the scripts by this ones on Tapestry-Jquery Project http://gmap.nurtext.de/ And this is what I got: <http://tapestry.1045711.n5.nabble.com/file/n5718196/maps.png> -- View this message in context: http://tapestry.1

Re: Tapestry Jquery slider problem

2012-08-08 Thread bhorvat
Ok I see, well then my bad again. Sorry for the spam -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-slider-problem-tp5715130p5715140.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: Tapestry Jquery slider problem

2012-08-07 Thread Thiago H de Paula Figueiredo
On Tue, 07 Aug 2012 19:09:16 -0300, bhorvat wrote: Sorry for the spam if someone could delete this it would be nice. This is actually a mailing list, not a forum, so there's no way of deleting any message/post. Nabble is just an interface to mailing lists. -- Thiago H. de Paula Figueire

Re: Tapestry Jquery slider problem

2012-08-07 Thread bhorvat
Please disregard this. I must have missed spell something it is working now. Sorry for the spam if someone could delete this it would be nice. cheers all -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-slider-problem-tp5715130p5715131.html Sent from the

Tapestry Jquery slider problem

2012-08-07 Thread bhorvat
the zone is not triggered, that is the method from the ajax is never triggered. Did anyone come across this before? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-slider-problem-tp5715130.html Sent from the Tapestry - User mailing list archive at

Re: tapestry-beanvalidation and tapestry-jquery js error

2012-07-20 Thread Emmanuel DEMEY
hi, Yes I have solved BeanValidation javascript codes in the trunk version few weeks ago I think. Manu 2012/7/20 Alex Kotchnev > Nevermind - it looks like a version conflict/omission on my end. I was > using tapestry-jquery 3.2.0 together w/ tapestry 5.3 . When I updated > tapestr

Re: tapestry-beanvalidation and tapestry-jquery js error

2012-07-20 Thread Alex Kotchnev
Nevermind - it looks like a version conflict/omission on my end. I was using tapestry-jquery 3.2.0 together w/ tapestry 5.3 . When I updated tapestry5-jquery to 3.3.0, the error went away. Cheers, Alex K On Thu, Jul 19, 2012 at 5:51 PM, Alex Kotchnev wrote: > I use tapestry-beanvalidation

tapestry-beanvalidation and tapestry-jquery js error

2012-07-19 Thread Alex Kotchnev
I use tapestry-beanvalidation and tapestry-jquery. As a result, when I open up a page, I get a javascript error in tapestry-beanvalidator.js:15: Cannot set property 'notnull' of undefined The offending line is : Tapestry.Validator.notnull = function(field, message, spec) Uncaught

Re: tapestry-jquery: changing superfish menu colors

2012-05-13 Thread Chris Cureau
Thanks, Clement! I hadn't yet needed to delve into CSS, and I wasn't sure about overriding...guess I should have tried it first. :) leaving the design elements to someone else has its disadvantages On May 13, 2012 2:51 PM, "Clément OUDOT" wrote: > 2012/5/13 Chris Cureau : > > I'm sure that

Re: tapestry-jquery: changing superfish menu colors

2012-05-13 Thread Clément OUDOT
2012/5/13 Chris Cureau : > I'm sure that I'm overlooking something, but I can't seem to find the css > in my project that controls how jquery components are drawn.  I want to > change the color of the superfish menu from the default blue to something > that matches the rest of the pages a little mo

tapestry-jquery: changing superfish menu colors

2012-05-13 Thread Chris Cureau
I'm sure that I'm overlooking something, but I can't seem to find the css in my project that controls how jquery components are drawn. I want to change the color of the superfish menu from the default blue to something that matches the rest of the pages a little more closely. How can I do this?

Re: Tapestry-jQuery

2012-04-24 Thread Chris Mylonas
ery > accordion provided on Tapestry-Jquery... > > > > > ># ${node.name} > > > > >

Re: Tapestry-jQuery

2012-04-24 Thread arterzatij
Hi, I actually did in this way an it works, but I want to use the jquery accordion provided on Tapestry-Jquery... # ${node.name

Re: Tapestry-jQuery

2012-04-24 Thread Chris Mylonas
ake dinamic content in an > accordion component. > > > Thanks! > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Tapestry-jQuery-tp5662365p5662365.html > Sent from the Tapestry - User mailing list archive at Nabble.com. > >

Tapestry-jQuery

2012-04-24 Thread arterzatij
Hi all, Just a quick question, how do I do to make dinamic content in an accordion component. Thanks! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-jQuery-tp5662365p5662365.html Sent from the Tapestry - User mailing list archive at Nabble.com

Tapestry Jquery AjaxUpload Template

2012-04-20 Thread George Christman
Hello, does anybody know how to provide a custom template for the ajaxuploader? I'd like to restyle the button and remove the file upload list below without having to fully depend on css. Thanks -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-AjaxU

Re: Tapestry Jquery Chrome problem

2011-10-03 Thread bhorvat
Great that would be of help to many others. Cheers and thanks again -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-Chrome-problem-tp4862896p4864615.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: Tapestry Jquery Chrome problem

2011-10-03 Thread Emmanuel DEMEY
someone is using maven to build their > application they will get the fixed version, or am I wrong? > > Thanks for your fast responses > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-Chrome-problem-tp4862896p4864596.html > S

Re: Tapestry Jquery Chrome problem

2011-10-03 Thread bhorvat
onses -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-Chrome-problem-tp4862896p4864596.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: Tapestry Jquery Chrome problem

2011-10-03 Thread Emmanuel DEMEY
> That solved my problems. Thanks for your assistance. > Do you happen to know when will they fix this problem for everyone? > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-Chrome-problem-tp4862896p4864573.html > Sent from the Tapestry

Re: Tapestry Jquery Chrome problem

2011-10-03 Thread bhorvat
Hi That solved my problems. Thanks for your assistance. Do you happen to know when will they fix this problem for everyone? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-Chrome-problem-tp4862896p4864573.html Sent from the Tapestry - User mailing list

Re: Tapestry Jquery Chrome problem

2011-10-03 Thread Emmanuel DEMEY
he Google > Group of the Tapestry-jQuery project : > https://groups.google.com/forum/?hl=fr#!forum/tapestry5-jquery > > I will send you a patch today by email. > > Emmanuel > > > 2011/10/2 bhorvat > >> Yea that file is missing. Do you have an idea why? Also why t

Re: Tapestry Jquery Chrome problem

2011-10-02 Thread Emmanuel DEMEY
Hi We use Github for reporting problems. You can maybe report it on the Google Group of the Tapestry-jQuery project : https://groups.google.com/forum/?hl=fr#!forum/tapestry5-jquery I will send you a patch today by email. Emmanuel 2011/10/2 bhorvat > Yea that file is missing. Do you have

Re: Tapestry Jquery Chrome problem

2011-10-02 Thread bhorvat
ge in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-Chrome-problem-tp4862896p4863105.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.or

Re: Tapestry Jquery Chrome problem

2011-10-02 Thread Emmanuel DEMEY
the rest of the > javascript on that page. So when I click the url that will refresh an ajax > part of the page it doesn't work. > > So any ideas? > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-Chrome-problem-tp4862896p48629

Re: Tapestry Jquery Chrome problem

2011-10-02 Thread bhorvat
Forgot to mention when this error is thrown it messes with the rest of the javascript on that page. So when I click the url that will refresh an ajax part of the page it doesn't work. So any ideas? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-C