Re: IE8 Compatibility Quick Fix

2008-10-30 Thread samlai
ubject: Re: IE8 Compatibility Quick Fix > > I'm afraid this will be an unpopular suggestion - but does anyone else > wish > there was a little simpler, manual/direct control over the section > of > the page? > > Just my $0.02. > > -Luther > > > &

Re: IE8 Compatibility Quick Fix

2008-10-22 Thread samlai
Anybody knows how to do this? BTW, the css include tag right after head is the following: Basically I want to be able to do the following: -- View this message in context: http://www.nabble.com/IE8-Compatibility-Quick-Fix-tp19340728p20120755.html Sent from the Tapestry - Us

IE8 Compatibility Quick Fix

2008-09-05 Thread samlai
http://www.dynamicdrive.com/forums/showthread.php?t=36047 I have to put the following meta tag right after in order for IE8 to pickup. ... Currently, I have some CSS includes that's automatically inserted right after . What's the best way to add that meta tag before those CSS includes?

Re: Javascript at the bottom of page

2008-08-31 Thread samlai
I have similar problem and the workaround works but it's kind of ugly. In my case, my embedded

Re: T5: Strategy for pages that edit beans

2008-04-03 Thread samlai
What about calling discardPersistentFieldChanges onCleanupRender? http://tapestry.apache.org/tapestry5/tapestry-core/guide/persist.html Clearing Persistent Fields If you reach a point where you know that all data for a page can be discarded, you can do exactly that. The method discardPersisten

Re: Input Validation on Server Side?

2008-03-27 Thread samlai
e only the elements in the selection model. It'd suck if I have to manually check that for every selection inputs. Robert Zeigler wrote: > > Yes, tapestry's built-in validators validate both client and server- > side. > > Robert > > On Mar 27, 2008, at 3/

Input Validation on Server Side?

2008-03-27 Thread samlai
A typical automatically produce client-side validation. Just wondering whether it produce server-side validation counterparts and enforce on the server-side as well? Obviously, it goes from Tapestry validation language to JavaScript. I'd think it shouldn't be hard to automatically generate tha

Re: Client side validation and IE

2008-03-25 Thread samlai
Hey guys, I think I found an easy solution for IE7. Just put the following line on top of the HTML you spit out. http://www.w3.org/TR/html4/strict.dtd";> -- View this message in context: http://www.nabble.com/Client-side-validation-and-IE-tp16172230p16296063.html Sent from the Tapestry - User

Re: AW: Autocomplete Using Selection as Criteria

2008-03-04 Thread samlai
Just want to share my solution. I don't like to do "onchange='this.form.submit()'" on t:select input, because that can trigger early validation errors before the user is actually ready to submit the form. Also, by default the first element in t:select is selected, onchange only triggers when th

Autocomplete Using Selection as Criteria

2008-03-03 Thread samlai
I have an autocomplete textfield. I'd like the retrieved autocomplete list to be based from a selection field in addition to the autocomplete textfield. I'm not sure how I can feed the current server region selection to onProvideCompletionsFromServerNameField, serverRegionField is null before su

Format Output in Grid Table

2008-03-01 Thread samlai
I have a grid table in "Roster.tml". The grid table prints out information for "User(s)". An "User" has many properties including rank and status defined as follow: public enum Rank {INITIATE, MEMBER, GROUP_ADMIN} public enum Status {NEW, OLD} With the template below, the output value