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/

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")

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

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 Nabble.com. ---

Re: Tapestry-Jquery datatable detail row.

2013-02-12 Thread Emmanuel DEMEY
OK. So I have to do nothing ? :d 2013/2/12 George Christman > Manu, that issue preventing me from upgrading jquery actually doesn't > appear > to be a bug, but perhaps an oversight by the Tapestry Team. It appears the > ajaxformloop doesn't have the alwaysSubmit parameter enabling the > ajaxfor

Re: Tapestry-Jquery datatable detail row.

2013-02-12 Thread George Christman
Manu, that issue preventing me from upgrading jquery actually doesn't appear to be a bug, but perhaps an oversight by the Tapestry Team. It appears the ajaxformloop doesn't have the alwaysSubmit parameter enabling the ajaxformloop component to set formfragment alwaysSubmit parameter to true. This a

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread Emmanuel DEMEY
Hi George I Will have a look to this issue tomorow. Manu Le lundi 11 février 2013, George Christman a écrit : > Manu, I'll first need to figure out how to resolve this issue > https://github.com/got5/tapestry5-jquery/issues/267 before being able to > move forward with the detail row. The older

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread George Christman
Manu, I'll first need to figure out how to resolve this issue https://github.com/got5/tapestry5-jquery/issues/267 before being able to move forward with the detail 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

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 Nabble.com. ---

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread George Christman
Manu, could you elaborate a little bit more on creating a component? Would this be a tapestry component? My initial thoughts we're to create a mixin with a json object passed in containing the details. I would then add the additional row which could be added to the expand icon's event handler. Does

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread George Christman
I guess another option would be to create a mixin similar to column filter and use something like this. /* Formating function for row details */ function fnFormatDetails ( oTable, nTr ) { var aData = oTable.fnGetData( nTr ); var sOut = ' '; sOut += ' Rendering engine: '+aData[1]

Re: Tapestry-Jquery datatable detail row.

2013-02-11 Thread Emmanuel DEMEY
I have already developed something like that. but I do not find the code. Sorry. You can maybe create a component, corresponding to the icon of the first column. This column will add a JavaScritp handler, to the click event, and display your data in a new row, located just after the selected row.

Re: Tapestry-Jquery Datatable Configuration

2013-02-05 Thread Emmanuel DEMEY
You're welcome ;) Manu 2013/2/5 George Christman > Manu, your good, Thanks man. Issue resolved. > > Solution, > > Java. > > public JSONObject getOptions() { > JSONObject json = new JSONObject(); > json.put("bJQueryUI", "true"); > json.put("bStateSave", true); >

Re: Tapestry-Jquery Datatable Configuration

2013-02-05 Thread George Christman
Manu, your good, Thanks man. Issue resolved. Solution, Java. public JSONObject getOptions() { JSONObject json = new JSONObject(); json.put("bJQueryUI", "true"); json.put("bStateSave", true); json.put("sDom", "RH<\"clear\"><\"ui-toolbar ui-widget-header ui-corner

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
Hello, I couldn't make it work. Does anyone use this? There's something wrong with the javascript function "one". I had to comment it and call "tapestryFieldEventManager" directly. Also, when I submit the form, these ajax-validated fields are not validated. Tapestry only validates the built in v

Re: Tapestry-jquery ajax validation

2012-12-25 Thread rosecorp
Sure. Js function shoul look like: (function($) { $.fn.configureValidators = function(callbackUrl) { $(this.selector).blur(function() { var field = $(this); if (field && field.val() != "") { $.ajax(

Re: Tapestry-jquery ajax validation

2012-12-24 Thread Lenny Primak
Could you post the solution to your problem?? Thanks. On Dec 24, 2012, at 7:58 AM, rosecorp wrote: > 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 tap

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

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 mailing list

Re: tapestry-jquery accordion height problem

2012-11-29 Thread Emmanuel DEMEY
Hi, I think it a jQuery UI problem. can you test the version of the jQuery UI you use. 1.8.* or 1.9.*. The parameters have changed between these 2 versions. Can you also add a breackpoint on the client-side, in order to check if the JSON is correct. Thanks. Manu 2012/11/29 rosecorp > Hi Guy

Re: Tapestry-JQuery: use of GoogleMap component

2012-11-24 Thread David Canteros
Thank you Emmanuel, i will try it! David -- David Germán Canteros 2012/11/23 Emmanuel DEMEY > It is just a problem of the jQuery Widget. I found a solution (in French > sorry http://www.touraineverte.com/gmap3/api/get-address.htm

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'll try first the solution >

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 google-group of the proj

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-demo --

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: -- View this message in context: http://tapestry.1045711.

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

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

Re: Tapestry-jQuery

2012-04-24 Thread Chris Mylonas
That last email was all tapestry5-jquery. It was a copy of the jqueryui.com demo as an example. All you have to do is substitute where begins with your loop. HTH :D On 25/04/2012, at 1:43 AM, arterzatij wrote: > Hi, I actually did in this way an it works, but I want to use the jquery > accord

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
Hi, Using this demo: http://jqueryui.com/demos/accordion/ I would take a guess to put an ${accordionPage1} within the first tags in the tml below. and in the java file have a getAccordionPage1(){ return "Some text goes here" ;} You can then take it further and get down into your lower layers

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
I will make the modification to the released version ASAP for tapestry5-jquery 2.6.1. 2011/10/3 bhorvat > No this solution is perfect so no need for the external jar. > > I know that this version is released but I was just thinking can't this be > fixed in the repository so if someone is using m

Re: Tapestry Jquery Chrome problem

2011-10-03 Thread bhorvat
No this solution is perfect so no need for the external jar. I know that this version is released but I was just thinking can't this be fixed in the repository so if someone is using maven to build their application they will get the fixed version, or am I wrong? Thanks for your fast responses

Re: Tapestry Jquery Chrome problem

2011-10-03 Thread Emmanuel DEMEY
Tapestry 2.6.0 is already released. So the only solution is the one I gave to you. I can maybe create a external jar, in order to solve it. For the next version, based on Tapestry 5.3, it will be OK, because we do not override all the Core Stack. Emmanuel 2011/10/3 bhorvat > Hi > > That solved

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 arc

Re: Tapestry Jquery Chrome problem

2011-10-03 Thread Emmanuel DEMEY
I have just added a post to the Google Group : https://groups.google.com/forum/?hl=fr#!topic/tapestry5-jquery/oydYshNHVBY, with a solution. I am waiting for your feedbacks. Emmanuel 2011/10/3 Emmanuel DEMEY > Hi > > We use Github for reporting problems. You can maybe report it on the Google >

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 an id

Re: Tapestry Jquery Chrome problem

2011-10-02 Thread bhorvat
Yea that file is missing. Do you have an idea why? Also why this error only affects Chrome in normal mode? I am only using jquery. Should I report this to someone? Don't have a git account so not sure how to report this problem if this is a problem to report to. -- View this message in contex

Re: Tapestry Jquery Chrome problem

2011-10-02 Thread Emmanuel DEMEY
Hi Does your application use only jQuery, or jQuery + Prototype? In your generated HTML, do you have the tapestry-message.js file ? I think this file is missing, and the Tapestry.Messages object. Emmanuel 2011/10/2 bhorvat > Forgot to mention when this error is thrown it messes with the rest

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-Chrome-pro