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
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/
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")
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")
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
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
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
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
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=
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
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();
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
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
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
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
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
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")
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
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
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).
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
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
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
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
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
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
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.
--
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
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
'+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
.
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
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
nRowCallback(){
> var fnRowCallback = function( nRow, aData, iDisplayIndex,
> iDisplayIndexFull ) {
> if (aData["rush"] == "Rush" ) {
> nRow.className = nRow.className + " gradeX";
> }
>
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
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
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
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.
>
> --
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
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/
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
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
--- 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 :
>
>
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
-
> 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
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
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
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
('#%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
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
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
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:
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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?
ery
> accordion provided on Tapestry-Jquery...
>
>
>
>
>
># ${node.name}
>
>
>
>
>
Hi, I actually did in this way an it works, but I want to use the jquery
accordion provided on Tapestry-Jquery...
# ${node.name
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.
>
>
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
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
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
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
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:
> 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
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
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
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
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
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
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
83 matches
Mail list logo