Re: [Trinidad] Setting the document type

2007-07-10 Thread D. Cardon
Well, I would just like to be able to enforce !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/TR/html4/strict.dtd; on the document. --David --- Adam Winer [EMAIL PROTECTED] wrote: No, there isn't currently. What DTD are you looking for? -- Adam On 7/9/07, D. Cardon

Re: [Trinidad] Setting the document type

2007-07-10 Thread D. Cardon
not supporting attribute name as well as some other issues. We're working on better supporting the standard, but some issues requires JSF 1.2 to be more compliant (namely invalid id error). Regards, ~ Simon On 7/10/07, D. Cardon [EMAIL PROTECTED] wrote: Well, I would just like

[Trinidad] Setting the document type

2007-07-09 Thread D. Cardon
How do I set the DOCTYPE declaration, when using a tr:document? Currently, Trinidad appears to render out the HTML as: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/TR/html4/loose.dtd; ... Is there any way to change this? Thanks, --David

[Trinidad] Defer script bug in IE7

2007-06-25 Thread D. Cardon
Hi all, I ran into a puzzling bug today which took a good bit of time to figure out. So I thought I'd mention it in case someone else runs into the same problem. I have been developing a few of my own custom components, which launch javascripts that load custom page content via AJAX. Since I

Re: [Trinidad] Defer script bug in IE7

2007-06-25 Thread D. Cardon
stop using document.write(). Use DOM APIs to add elements and text content. -- Adam On 6/25/07, D. Cardon [EMAIL PROTECTED] wrote: Hi all, I ran into a puzzling bug today which took a good bit of time to figure out. So I thought I'd mention it in case someone else runs

[Trinidad] tr:selectOneRadio Feature

2007-06-22 Thread D. Cardon
I've recently been playing around with radio buttons in Trinidad and I noticed a possibly very useful change to the tr:selectOneRadio tag's implementation. Currently, this tag only seems to work if select items are direct children of the tag, like this: tr:selectOneRadio ... tr:selectItem

[Trinidad] PPR and GWT components

2007-06-18 Thread D. Cardon
Hi all! I've been able to get GWT components to comply fairly nicely with Trinidad, but now I'd like to integrate them with PPR. Right now, the GWT component is updating correctly in the hidden Iframe (_pprIFrame), however, I don't really understand the mechanism for how that works.

Re: [Trinidad] Page flow scope and Back button

2007-06-13 Thread D. Cardon
this strategy into a reusable object if desired. -- Adam On 6/11/07, D. Cardon [EMAIL PROTECTED] wrote: Thanks, that clarifies the documentation. So, my follow-up question would be: Is there any way that I can detect in Trinidad that the user has gone from one page to the next

Re: [Trinidad] Page flow scope and Back button

2007-06-11 Thread D. Cardon
Thanks, that clarifies the documentation. So, my follow-up question would be: Is there any way that I can detect in Trinidad that the user has gone from one page to the next one and then back again? Thank you for your help, --David --- Adam Winer [EMAIL PROTECTED] wrote: On 6/8/07, D

[Trinidad] Page flow scope and Back button

2007-06-08 Thread D. Cardon
Hi *, I'm a little uncertain about how the pageFlowScope interacts with the browser's Back button. The documentation states: ...clicking the Back button will automatically reset the page flow scope to its original state. Which 'original state' is this referring to? For example, suppose I

Re: [Trinidad] GWT Integration

2007-05-30 Thread D. Cardon
this), but the trunk doesn't, instead sending org.apache.myfaces.trinidad.faces.STATE. If you're using JSF 1.2, you could (and should) use the Trinidad 1.2 code. -- Adam On 5/29/07, D. Cardon [EMAIL PROTECTED] wrote: Thanks for your response, I looked into it and found out that when G4JSF

Re: [Trinidad] GWT Integration

2007-05-30 Thread D. Cardon
expect a colon at all in the state token. What line of code are you looking at? -- Adam On 5/30/07, D. Cardon [EMAIL PROTECTED] wrote: Adam, Thanks for the info! Since I'm using the trunk, the org.apache.myfaces.trinidad.faces.STATE is what needs to be sent (at least, that's

[Trinidad] GWT Integration

2007-05-29 Thread D. Cardon
Hi all, I'm using MyFaces Trinidad and am integrating the Google Web Toolkit (GWT) to work along with it. I am using the G4JSF project along with some of my own modifications. So far, everything on the client side is working just fine, but I am having difficulty communicating with the server

Re: [Trinidad] GWT Integration

2007-05-29 Thread D. Cardon
that the state parameter is not getting submitted. Check the G4JSF code to see if it has hardcoded a list of request parameters to submit. -- Adam On 5/29/07, D. Cardon [EMAIL PROTECTED] wrote: Hi all, I'm using MyFaces Trinidad and am integrating the Google Web Toolkit (GWT