How can I use Progressive display in my code

2011-06-15 Thread pradeepchy
I want to use in my code which initially display the list of users. When a search button is clicked I progress icon to display to let the user know about the processing. The code I have used is as follows : Search ${modelBean.accountName}

Re: How can I use Progressive display in my code

2011-06-16 Thread pradeepchy
Thanks Laurent :-), It was really helpful and I got my problem resolved. -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-can-I-use-Progressive-display-in-my-code-tp4491860p4494308.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Setup methods are called twice while requesting a page.

2011-11-08 Thread pradeepchy
Hi All, I am facing a strange problem in my application. I have observed that page setup methods with annotation either @SetupRender or @BeginRender are called twice whenever a request is made to that page. In these methods I am calling the database methods to pull data from db. @SetupRender void

Re: Setup methods are called twice while requesting a page.

2011-11-09 Thread pradeepchy
Thanks Christian- I have spotted the problem with the help of your trick to know the exact cause of it. Thanks for your help. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Setup-methods-are-called-twice-while-requesting-a-page-tp4975888p4977710.html Sent from the Tapestr

Re: Safari (for example) browser history and form exception

2012-03-28 Thread pradeepchy
Hi lprimak- I was facing the same issue but after applying the changes you have suggested, problem got resolved. There are few questions which are not clear to me- 1) Why this problem occurs. In my case, user hits a link, which will open a form to make entries.What is happening is when user click

Checkbox not changing its state after click

2012-04-10 Thread pradeepchy
Hi friends- I am trying to check/uncheck a checkbox on the page, but its not changing its state. The code which I used in my tml is below : This problem occurs in IE browsers only and it works in FF and others. Any suggestion would be much appreciated. -- View this message in context: http://t

Re: Checkbox not changing its state after click

2012-04-10 Thread pradeepchy
Hi Taha- Thanks for reply. My initial thought on this is some other javascript in the application is changing the state of the checkbox, which I am trying to figure out. Code in the template is below : - - ${message:checkbox-label} I am not using Ajax for the checkbox. -- View th

Re: Checkbox not changing its state after click

2012-04-12 Thread pradeepchy
Hello Everyone- Good evening. This problem is resolved now. As I expected some other java script in the application was causing the problem. The application was trying to attach a event for every form components (like textfields, checkboxes as per the functionality to track the unsaved changes).

Re: problem while submitting the form

2012-04-23 Thread pradeepchy
Thanks Lance for taking a look into the problem. Is clearing the browser cache, only solution to this problem ? -- View this message in context: http://tapestry.1045711.n5.nabble.com/problem-while-submitting-the-form-tp5659515p5659673.html Sent from the Tapestry - User mailing list archive at

Re: How to use messages without @Inject?

2012-04-24 Thread pradeepchy
You need to use an additional constructor in the Custom validator class. public MyPasswordValidator() { super(null, String.class, "msg-key"); } Where msg-key is the key for the validation message displayed on the the field. You can put this key in ValidationMessages.properties file. --