Re: Tapestry 5.4 Dojo as the Infrastructure Provider

2014-02-08 Thread Adam Henderson
Hi Dimitris, As you know, Tap 5.4 is using RequireJS as the loader and is configured by creating a var require={} object before the require.js file is loaded. As I am using dojo, it uses a similar mechanism but the variable is called ‘dojoConfig’. The ‘require’ object currently being output by

Bootstrap 3 & Tapestry 5.4

2013-07-28 Thread Adam Henderson
Hi, Just wanted to know how Tapestry was planning to handle the imminent changes to Bootstrap 3. Regards, Adam. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry

JSON Response from DirectLink Help

2007-01-21 Thread Adam Henderson Azudio
Hi All, Probably a simple answer to this but I'm lost; how do I get a JSON response from a link? And once I've got a response how does it get procesed; ie: User clicks a link, ajax call is made, a JSON object is created and returned, a method then fires to process the recieved JSON object

Re: Tap 4.1 Shell component Exceptions

2006-07-14 Thread Adam Henderson Azudio
es/no): yes Password:: (Sorry, I'm totally new to the Maven thing) On 15 Jul 2006, at 00:39, Jesse Kuhnert wrote: Ok, for sanity's sake, what happens when you deploy/run the TimeTracker example application? (Can be run via maven as well ) On 7/14/06, Adam Henderson Azudio <

Re: Tap 4.1 Shell component Exceptions

2006-07-14 Thread Adam Henderson Azudio
Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.105 output). The same exact jars are kept up to date on the maven snapshot repo, if you can get it to blow up there I would be able to ensure I have a baseline to measure against. On 7/14/06, Adam Henderson Azudio <[EMAIL PROTECTED]>

Re: Tap 4.1 Shell component Exceptions

2006-07-14 Thread Adam Henderson Azudio
2006, at 21:59, Jesse Kuhnert wrote: I've not seen it before. What kind of servlet container is this running in? On 7/14/06, Adam Henderson Azudio <[EMAIL PROTECTED]> wrote: Hi All, Just had a go at building from the 4.1 Snapshot and the Shell component seems to be throwing this list

Re: Tap 4.1 Shell component Exceptions

2006-07-14 Thread Adam Henderson
cat.util.threads.ThreadPool$ControlRunnable.run (ThreadPool.java:684) java.lang.Thread.run(Thread.java:613) ** On 14 Jul 2006, at 21:59, Jesse Kuhnert wrote: I've not seen it before. What kind of servlet container is this run

Tap 4.1 Shell component Exceptions

2006-07-14 Thread Adam Henderson Azudio
Hi All, Just had a go at building from the 4.1 Snapshot and the Shell component seems to be throwing this list of exceptions related to dojo: Home.html "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml";> Hello World

Re: Checkbox required validation not working

2006-06-25 Thread Adam Henderson Azudio
does 'validate' get called. Thanks, Adam On 25 Jun 2006, at 13:27, Adam Henderson Azudio wrote: Thanks Scott, I'll give your code a try. It might be worth sticking this up on the wiki as well. Thanks again, Adam On 24 Jun 2006, at 16:55, Maura Wilder wrote: no - Origina

Re: Checkbox required validation not working

2006-06-25 Thread Adam Henderson Azudio
vent.invalid_field(field, message); } Then you use it in your page file like this: Home.page class="com.myapp.validator.RequiredCheckbox"> Hope this helps. regards, Scott On Saturday 24 June 2006 22:22, Adam Henderson wrote: > Hi All, > > I

Re: Checkbox required validation not working

2006-06-25 Thread Adam Henderson Azudio
vent.invalid_field(field, message); } Then you use it in your page file like this: Home.page class="com.myapp.validator.RequiredCheckbox"> Hope this helps. regards, Scott On Saturday 24 June 2006 22:22, Adam Henderson wrote: > Hi All, > > I

Re: Checkbox required validation not working

2006-06-24 Thread Adam Henderson Azudio
No difference, I changed the form to: listener="listener:confirm"> T&C:validators="validators:required"/> On 24 Jun 2006, at 13:33, James Carman wrote: What happens if you take the listener off the button and put it on the form itself. -----Or

Checkbox required validation not working

2006-06-24 Thread Adam Henderson
Hi All, I'm doing a simple form that has a checkbox which must be checked in order to submit the form: T&C:validators="validators:required"/> name="Submit" value="Confirm"/> but if I can still submit my form without the checkbox being checked, so it looks like no validation is taking