Tapestry5 Form Validate, Success,Failure, Select Events

2009-10-14 Thread sandeepraj singh
Hi, I have a scenario like below Page A.tml == Now, in the above i have noticed the behaviour as below 1) I am able to catch the validate event in side MyComponent.java 2) I am able to catch , validate, validateform,success, failure, submit events in PageA.java 3) No other event except

Re: Tapestry5 Form Validate, Success,Failure, Select Events

2009-10-14 Thread sandeepraj singh
ocessSubmission method in the AbstractTextField > component, this is where the validate event is triggered. > > Regards > Christophe. > > 2009/10/14 sandeepraj singh > >> >> Hi, >> I have a scenario like below >> >> Page A.tml >> == >> >

How to avoid contribution to TypeCoercer in my case.

2009-10-30 Thread sandeepraj singh
Hi All, I have the following In MyComponent.tml ${MyDataObject.someothervariable} Ofcourse there is supporting code for the same in MyComponent.java. ie. having an istance variable of MyDataObject etc. In my Page, there are 2 cases 1) I use the component wi

Re: How to avoid contribution to TypeCoercer in my case.

2009-11-09 Thread sandeepraj singh
D²> ... > > The tapestry error message in this case is - IMHO - improvable ;-) > > Regards > Niclas > > > On 30.10.09 08:31, "sandeepraj singh" > wrote: > >> >> >> Hi All, >> I have the following >> >> In MyComponent.tml

Re: How to avoid contribution to TypeCoercer in my case.

2009-11-10 Thread sandeepraj singh
arder concepts of T5 in my opinion, it doesn't seem logical > to me so I don't understand what to do. > > http://202.177.217.122:8080/jumpstart/examples/tables/editableloop1 > > > > On Tue, Nov 10, 2009 at 7:47 AM, sandeepraj singh < > sandeepraj.si...@atosorig

Tapestry5 Grid Coloumn Bolded when sorted

2009-11-13 Thread sandeepraj singh
Hi, I want to make Grid Columns bolded when they are sorted. I am using my own grid "MyGrid" which has an embedded Tapestry5 Grid Any Pointers Thanks Sandeep -- View this message in context: http://old.nabble.com/Tapestry5-Grid-Coloumn-Bolded-when-sorted-tp26335659p26335659.html Sent from the

Re: Tapestry5 Grid Coloumn Bolded when sorted

2009-11-15 Thread sandeepraj singh
. de Paula Figueiredo wrote: > > Em Fri, 13 Nov 2009 10:09:31 -0200, sandeepraj singh > escreveu: > >> Hi, > > Hi! > >> I want to make Grid Columns bolded when they are sorted. > > Take a look at the generated HTML. Grid adds the "t-sort-column-as

Date Field Component - Disable

2009-11-19 Thread sandeepraj singh
Hi, A weird requirement may be, I want to use Date Field Component and the ability to disable the text field associated with it only. The intention is to match the existing date component in one of older technologies we worked on. While migrating to Tapestry5 we want that by clicking the Calende

Re: Have a Master Checkbox For T5 Grid Component

2009-11-19 Thread sandeepraj singh
d to leave a trace on subject, as I spent some time on it. > I have tried the lombok checkboxgroup demo and am not able to make it work > in a grid. > However the ioko-tapestry-commons checkbox group works like a charm in a > grid. > > regards, > Mario Udina > > On Fri, Ju

Re: Have a Master Checkbox For T5 Grid Component

2009-11-20 Thread sandeepraj singh
hi All, I agree to Mario, ioko library works fine. What i had missed was to inject master checkbox in my java file @InjectComponent @Property private Checkbox mastercheckbox2; Thanks Sandeep sandeepraj singh wrote: > > Hi Mario, > > I am getting this error while using ioko li

Login Filter,

2009-11-26 Thread sandeepraj singh
Hi, I have the following requirement for my application Develop a Tapestry login check Filter which (a) Avoids direct hit to any page in my application without logging in, if anyone does that, he should be redirected to the login page. (b) After session expiry if we do any action, It should be

Grid Sorting images changed - One of the approaches provided

2009-12-02 Thread sandeepraj singh
Hi, We have a component MyGrid which has embedded Tapestry5 Grid component. We needed to change the sorting images with our own and had first applied the changes through css. However, it was giving problems of space consistency. In order to better it, we have initialized the below script through

Re: Grid Sorting images changed - One of the approaches provided

2009-12-03 Thread sandeepraj singh
om grid Thanks Thiago H. de Paula Figueiredo wrote: > > Em Thu, 03 Dec 2009 05:23:43 -0200, sandeepraj singh > escreveu: > >> Hi, > > Hi! > >> We have a component MyGrid which has embedded Tapestry5 Grid component. >> We needed to change the sorting

Re: Grid Sorting images changed - One of the approaches provided

2009-12-04 Thread sandeepraj singh
wrote: > > Em Thu, 03 Dec 2009 05:23:43 -0200, sandeepraj singh > escreveu: > >> Hi, > > Hi! > >> We have a component MyGrid which has embedded Tapestry5 Grid component. >> We needed to change the sorting images with our own and had first applied >> th

Re: Select does not submit form on change

2009-12-09 Thread sandeepraj singh
What was your way out mite.How did you get it working But anyways, do you think writing a java script for submitting a select should be the ideal way that it should be working? Thanks Sandeep Mite wrote: > > At last. This way works. > > This is the second time you get me out of the mud. :)

Re: Select does not submit form on change

2009-12-09 Thread sandeepraj singh
Hi, Its because, when you do not assign t:id to a submit button, it assigns name="submit" which has a conflict with any other submit in your page(even through java Script) i got it working with t:id="My Submit" then even on Change works. This is such an irritating error that we have put it our

Re: Login Filter,

2009-12-09 Thread sandeepraj singh
Hi Thiago, I created my own AccessController dispatcher but i have entered into another problem One first access to any page, redirection to Login page happens but it is without any stylesheet. My order of configuration is configuration.add( "AccessController", accessControlle

Re: Select does not submit form on change

2009-12-09 Thread sandeepraj singh
breaks form javascript. T5 > should > generate a safe default name for submit component. > > On Wed, Dec 9, 2009 at 11:24 AM, sandeepraj singh < > sandeepraj.si...@atosorigin.com> wrote: > >> >> Hi, >> >> Its because, when you do not assign t:id t

Re: Login Filter,

2009-12-11 Thread sandeepraj singh
handler.handle(parameters); } }; configuration.add("LoginFilter", loginFilter); } sandeepraj singh wrote: > > Hi Thiago, > > I created my own AccessController dispatcher but i have entered into > another problem > > One first access to an

Grid and Checkboxes

2009-12-15 Thread sandeepraj singh
Hi, I have done some search on the mailing list but have not found a concrete guide for the problem. I want to retrieve the selected rows of the grid via check boxes on the java side of the page. Note, there is no unique key in the data of the grid.

Tapestry5 template name simplification

2010-05-09 Thread sandeepraj singh
hi, As per the tapestry5 documentation " In certain cases, Tapestry will simplify the the logical name of a page. For example, the page class org.example.pages.address.Create Address will be given a logical name of "address/Create" (the redundant "Address" is removed as a suffix) " I wanted to

Re: Tapestry5 template name simplification

2010-05-10 Thread sandeepraj singh
your pages > to List, but then you'll end up with multiple List classes in > different packages. Or you could add an own UrlRewriteRule > for every list page. > > > i hope this helps > g, > kris > > > > Von:sandeepraj singh > An: users@tapestr

Re: Tapestry5 template name simplification

2010-05-10 Thread sandeepraj singh
urrent state of the discussion is... if there is > any :) > > so you could create an jira issue and/or override the > ComponentClassResolver with a custom implementation. > > g, > kris > > > > > > > Von:sandeepraj singh > An:

Re: Tapestry5 template name simplification

2010-05-10 Thread sandeepraj singh
> /signup > > Leaving the package name would make the URLs slightly "uglier". > This is merely a "nice to have" feature. > > On Mon, 10 May 2010 13:53:54 +0200, sandeepraj singh > wrote: > >> >> Thanks For the reply Kris, >> &g

Have a Master Checkbox For T5 Grid Component

2009-07-31 Thread sandeepraj singh
Hi Guys, I wanted to have a master CheckBox while using the Grid Component. That CheckBox would be present at the Header Row of Grid Components, and allow to check the CheckBoxes below to be checked or unchecked. Is there any way else to do it except for Copying the entire Grid Component Source

Re: Have a Master Checkbox For T5 Grid Component

2009-07-31 Thread sandeepraj singh
mponent in a header) > and add the mixin into other checkboxes in the column. > > > Shing > > > > > --- On Fri, 31/7/09, sandeepraj singh > wrote: > >> From: sandeepraj singh >> Subject: Have a Master Checkbox For T5 Grid Component >> To:

Confused at the way getter setters are being called!!!!

2009-08-03 Thread sandeepraj singh
Hi,I had known that for every Action Request there is a following Rendering Request that Tapestry Generates.However, the way the getter setters are being run has left me confused.Could some one please tell me, in case component tries to change the value of a bound parameter, in what sequence would