Re: SecuritySymbols.UNAUTHORIZED_URL isn't working in 0.6.1

2014-10-19 Thread George Christman
Awesome, I got it. I had app /* REQUEST ERROR but was missing 401 /error/unauthorized On Sun, Oct 19, 2014 at 10:59 PM, Kalle Korhonen wrote: > By the spec, application filters don't handle error requests by default > (Jetty, at least the o

Re: SecuritySymbols.UNAUTHORIZED_URL isn't working in 0.6.1

2014-10-19 Thread Kalle Korhonen
Yeah, omitting that certainly leaves it up to the container as well. Perhaps technically not a tapestry-security issue, but I added a note of it to the guide regardless. Kalle On Sun, Oct 19, 2014 at 9:24 PM, George Christman wrote: > Awesome, I got it. I had > > > app > /* >

Re: SecuritySymbols.UNAUTHORIZED_URL isn't working in 0.6.1

2014-10-19 Thread Kalle Korhonen
By the spec, application filters don't handle error requests by default (Jetty, at least the old versions, didn't conform). You need to have: app /* REQUEST ERROR as noted in http://tapestry.apache.org/error-page-recipe.html. I suspect you don't. Kalle

SecuritySymbols.UNAUTHORIZED_URL isn't working in 0.6.1

2014-10-19 Thread George Christman
Hi, I have the following configuration configuration.add(SecuritySymbols.LOGIN_URL, "/signin"); configuration.add(SecuritySymbols.UNAUTHORIZED_URL, "/error/unauthorized"); configuration.add(SecuritySymbols.SUCCESS_URL, "/account"); configuration.add(SecuritySymbols.REDIREC

Re: 5.4 cookies.removeCookieValue not working

2014-10-19 Thread George Christman
nvm, it ended up being an issue with the browser that required a simple restart. On Sun, Oct 19, 2014 at 8:42 PM, George Christman wrote: > Hi guys, I can't seem to get cookies.removeCookieValue() to work. My code > is pretty straight forward, any thoughts? > > public void onActionFromSignout()

5.4 cookies.removeCookieValue not working

2014-10-19 Thread George Christman
Hi guys, I can't seem to get cookies.removeCookieValue() to work. My code is pretty straight forward, any thoughts? public void onActionFromSignout() { System.out.println(WebUtils.SAVED_REQUEST_KEY); System.out.println(cookies.readCookieValue(WebUtils.SAVED_REQUEST_KEY)); security

Re: Update checkbox within Form for changing value of a row

2014-10-19 Thread George Christman
There is a few ways to go about this, but I personally think the simplest way to handle this kind of thing is to add a transient value to your CurrentTicket object and set the value in your grid. Example @NonVisual @Transient private boolean delete; //getters and setters Then in the grid Whe

Re: Calling property in t:message

2014-10-19 Thread George Christman
lol I don't think it's anything like the example I provided for you. I personally think your forcing the client to do a whole lot of unnecessary work. I don't understand the purpose of using keyup, change etc unless you expect to see real time change. Your original question stated you wanted to get

RE: Update checkbox within Form for changing value of a row

2014-10-19 Thread Name Surname
For better understanding what I want to achieve I have opened new Q. on StackOverflow. Thank you in advance on your efforts to enlighten me. :) http://stackoverflow.com/questions/26456425/updating-checked-property-with-a-value-from-select-button-in-tapestry > From: wintertime0...@outlook.com > T

RE: Calling property in t:message

2014-10-19 Thread Name Surname
Hey George! This is exactly almost same as I have done in JQuery. $("input") .keyup(function() { var value = $(broj).val(); $("#provjeraBroj").text(value); var value = $(datum).val(); $("#provj

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

2014-10-19 Thread Chris Mylonas
Thanks I'll give this a shot with some accordion js stuff that isn't working.

Re: Calling property in t:message

2014-10-19 Thread George Christman
This should get you close. fyi, I wrote this in the email client and has not been tested. //This can be made much more dynamic by passing in a json object rather than using fieldId1, fieldId2 etc. however I'm just demonstrating //how you can pass these values into your mixin. Delete item Create

Re: Calling property in t:message

2014-10-19 Thread George Christman
there is no code posted On Sun, Oct 19, 2014 at 2:14 PM, Name Surname wrote: > I made a jquery script that listens for change on every single field. It > produces exactly what I wanted, but that's not what I needed. I wanted to > implement it using Tap for better understanding how Tap deals with

RE: Calling property in t:message

2014-10-19 Thread Name Surname
I made a jquery script that listens for change on every single field. It produces exactly what I wanted, but that's not what I needed. I wanted to implement it using Tap for better understanding how Tap deals with JS. Anyway, here is a code for it: Crear Fracciones P

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

2014-10-19 Thread Thiago H de Paula Figueiredo
Awesome example, Arve! Thanks for sharing! On Sat, 18 Oct 2014 13:32:08 -0300, Arve Klev wrote: 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 compo

Re: Calling property in t:message

2014-10-19 Thread Thiago H de Paula Figueiredo
On Sun, 19 Oct 2014 06:18:11 -0200, Lance Java wrote: And I just repeated what everyone has said here as an answer! Yeah, this looks like a clear case not understanding the difference of server-side versus client-side and when stuff in either side happens. When you first render *the pag

RE: Calling property in t:message

2014-10-19 Thread Lance Java
And I just repeated what everyone has said here as an answer! On 18 Oct 2014 23:42, "Name Surname" wrote: > 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 >