RE: Calling property in t:message

2014-10-18 Thread Name Surname
I have made a Q. on Stackoverflow for better understanding of my issue. http://stackoverflow.com/questions/26445188/confirm-dialog-in-tapestry > From: wintertime0...@outlook.com > To: users@tapestry.apache.org > Subject: RE: Calling property in t:message > Date: Sat, 18 Oct 2014 21:47:50 +0100 >

RE: Calling property in t:message

2014-10-18 Thread Name Surname
Hey, George. But why should I move from my solution while I am so close to it? Also, I am sure the result will be the same. My code also needs some edit, I don't know exactly WHAT, that's why I am asking here and all I am need is to give me right direction. Tried with this solution too, {broj} i

Update checkbox within Form for changing value of a row

2014-10-18 Thread Name Surname
I have a code like this: /** * * @author */ public class POS { @Inject private Request request; @Inject private BiznisLogika tiketDao; @Inject private Session session; @InjectComponent private Zone result; @SessionState @Property private SearchCriter

RE: Calling property in t:message

2014-10-18 Thread George Christman
Take a look at this example, you just need to modify the code a little to meet your needs. https://gist.github.com/chrissom/2145835 On Oct 18, 2014 3:50 PM, "Name Surname" wrote: > Here is a code. I used a script code and get value from broj input > parameter, however, it writes nothing. > t:pa

RE: Calling property in t:message

2014-10-18 Thread Name Surname
Here is a code. I used a script code and get value from broj input parameter, however, it writes nothing. Are you sure? document.getElementById('uzmiBroj').value

RE: Calling property in t:message

2014-10-18 Thread George Christman
I don't see any code. On Oct 18, 2014 1:25 PM, "Name Surname" wrote: > Hello all! :) > OK, I tried with following: > > > > > But I don't get anything from it. Since it's only on clients side showing, > I may get it using JS, but I am not that good in it, nor in Java :D. Is > this right approach t

RE: Calling property in t:message

2014-10-18 Thread Name Surname
Hello all! :) OK, I tried with following: But I don't get anything from it. Since it's only on clients side showing, I may get it using JS, but I am not that good in it, nor in Java :D. Is this right approach to it?

Re: Tapestry 5.3.8 Maven repository

2014-10-18 Thread Thiago H. de Paula Figueiredo
The 5.3 branch in Git already supports Java 8. It just wasn't released yet, but we're planning to do it soon. :) If you cannot wait, you can grab the sources and build it yourself until an official release is done. On Sat, Oct 18, 2014 at 1:42 PM, Michael Leuthold < michael.leuth...@gmail.com> wro

Re: Tapestry 5.3.8 Maven repository

2014-10-18 Thread Michael Leuthold
Are there any thoughts to release 5.3.8 soon? I think it would be favorable if there was a version of Tapestry5 that supported the latest JVM. It's all patched and the 5.3 branch hasn't seen any changes since June. Though all focus lies on 5.4 it would send a good signal to push 5.3.8 out of the d

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-10-18 Thread Arve Klev
This could be done in a much simpler way today, I think. I'm using Tapestry 5.4-beta-22 and only the libraries shipped by Tapestry (Bootstrap, etc.) - love it. To use Bootstraps popover.js, a component we must initialize ourself, I only need to do this: In my Layout component (include the modules

Re: Calling property in t:message

2014-10-18 Thread George Christman
To use the confirm button as is your going to need to set those values with ajax as lance has suggested. I still think it would be best to create your own confirm mixin with your own js that will look for those values directly from the client rather than making a backend trip. Just my thought, perh