[Trinidad] Can the chart generated svg be converted to images?

2007-07-20 Thread Wesley Hales
Curious if anyone has tried or knows of a way to convert the charts that are generated to images?

Re: [Trinidad] xhtml compiant in-line javascript

2007-07-18 Thread Wesley Hales
added. Thanks, Wesley On 7/17/07, Adam Winer <[EMAIL PROTECTED]> wrote: I'd be OK with adding an XHTML mode, with an alternative ResponseWriter. BTW, you shouldn't need CDATA: just start escaping JS as if it were XML. -- Adam On 7/17/07, Wesley Hales <[EMAIL PROTECTED]

[Trinidad] xhtml compiant in-line javascript

2007-07-17 Thread Wesley Hales
Should I add an issue to Jira to get the in-line javascript generated from the ChartRenderer(and any other Renderers) wrapped in // tags? Is this a goal of MyFaces/Trinidad to be xhtml compliant? or Is there another way that others are dynamically doing this without writing their own renderer? T

Re: [Trinidad] how to change chart bar color

2007-07-08 Thread Wesley Hales
You should look at the trinidad chart example source in svn. All you have to do I.e - is define a new Color(255,255,245) in the chartmodel On Jul 8, 2007, at 5:35 AM, "André Fritsch" <[EMAIL PROTECTED]> wrote: Hello! I´m a new Trinidad user and like to use the chart features. I already

Re: [Trinidad] chart.svg Not well-formed?

2007-06-26 Thread Wesley Hales
When in doubt, read the domentation... templateSource="chart.svg" Just add that as an attribute and point it to a working svg On 6/26/07, Wesley Hales <[EMAIL PROTECTED]> wrote: I just discovered that this only happens when I use the gradients option... If I uncheck th

Re: [Trinidad] chart.svg Not well-formed?

2007-06-26 Thread Wesley Hales
omcat 6 and trinidad sources available. Bill On 6/26/07, Wesley Hales <[EMAIL PROTECTED]> wrote: > > Awesome, thanks... So I am on Tomcat 6.0.13 (which is the latest) - Any > ideas on what the problem actually was? I don't think I have a choice to go > any higher. >

Re: [Trinidad] chart.svg Not well-formed?

2007-06-26 Thread Wesley Hales
sion of Sun Java Application Server/Glassfish. The problem disappeared when I upgraded the appserver to a more recent version. Hope that helps, Bill On 6/26/07, Wesley Hales <[EMAIL PROTECTED]> wrote: > > I copied the chart demo code from the trinidad-demo in the Apache > subversion r

[Trinidad] chart.svg Not well-formed?

2007-06-26 Thread Wesley Hales
I copied the chart demo code from the trinidad-demo in the Apache subversion repo to my current Seam 1.3 cvs app. Everything works and renders fine, but the charts don't actually show up. All the adf resources and javascript data are showing up correctly on the app server also. So I tried to open

Re: Multiple calls on isRendered - Performance issue

2007-05-12 Thread Wesley Hales
ut if the architecture of the backingBean is that important, then I consider this very important info for a high traffic, highly visible application. Wes On 5/10/07, Adam Winer <[EMAIL PROTECTED]> wrote: On 5/10/07, Wesley Hales <[EMAIL PROTECTED]> wrote: > Yeah, we tried Adam&#x

Re: Multiple calls on isRendered - Performance issue

2007-05-10 Thread Wesley Hales
ostback and render so caching >> really should only be done between encodeBegin() and encodeEnd(). So >> implementing this optimisation is a little tricky - but not impossible >> I'm sure. >> >> Regards, >> >> Simon >> >> Andrew Robinson wrot

Re: Multiple calls on isRendered - Performance issue

2007-05-09 Thread Wesley Hales
fication on changing > this behavior. > > On 5/9/07, Wesley Hales <[EMAIL PROTECTED]> wrote: > > So the architect I am working with (Chris Kulinski) came up with the > > following patch to 1.1.5... > > > >

Re: Multiple calls on isRendered - Performance issue

2007-05-09 Thread Wesley Hales
tBaseCached extends UIComponentBase { public boolean isRendered() { return isRenderedCached(); } } So far so good, I will post the results if anything stops working. Wesley On 5/9/07, Wesley Hales <[EMAIL PROTECTED]> wrote: I am trying to address this at a frame

Re: Multiple calls on isRendered - Performance issue

2007-05-09 Thread Wesley Hales
hing > really should only be done between encodeBegin() and encodeEnd(). So > implementing this optimisation is a little tricky - but not impossible > I'm sure. > > Regards, > > Simon > > Andrew Robinson wrote: > > At the very least rendered is called during

Multiple calls on isRendered - Performance issue

2007-05-08 Thread Wesley Hales
Hello - Why do we continually call isRendered after encodeBegin()? Once the begin tag is written out, it shouldn't matter what the body and end rendered states are. Facelets 1.1.11 Myfaces 1.1.5 & 1.2 So if I have

Re: ajax4jsf and t:inputCalendar element conflict

2007-03-05 Thread Wesley Hales
strongly recommend the jenia calendar over the t:inputDate or > t:inputCalendar. The tomahawk controls use document.write instead of > DOM manipulation (up to recently, you will have to make a bug search > to check) that breaks AJAX code. jenia's has given me no issues and is >

Re: ajax4jsf and t:inputCalendar element conflict

2007-03-04 Thread Wesley Hales
Try the Jenia calendar component http://www.jenia.org/TestPopup/jsp/home.jsf . On 3/4/07, raindogs <[EMAIL PROTECTED]> wrote: I have a page that makes fairly heavy use of ajax4jsf processing. It all works great, but now I want to add a t:inputCalendar element, which causes the thing to blow u

Re: How To Workaround dynamic ID for datatable's etc...

2006-10-06 Thread Wesley Hales
I created the datatables dyniamically and am still getting a combined sort on the sub tables. I can see through logging: UIComponent uic = (UIComponent)dynamicTable.getChildren().get(j); uic.getClientId(FacesContext.getCurrentInstance()) = _idJsp0:_idJsp109:wesTable8024 uic.getFamily() = javax.fa

Re: How To Workaround dynamic ID for datatable's etc...

2006-10-04 Thread Wesley Hales
Reference this post from Craig about css attacks:http://mail-archives.apache.org/mod_mbox/myfaces-users/200410.mbox/[EMAIL PROTECTED] I have no choice but to use the same ID (I can't generate one dynamically when the datatable is being looped). So therefore, it is a bug when trying to loop over a d

How To Workaround dynamic ID for datatable's etc...

2006-10-02 Thread Wesley Hales
t the first list, a new datatable loops through the sub-list and uses the same id for each one) a.k.a nested tables in the detailStamp. All of the tables sort when I only want one of them to sort. Any help is greatly appreciated,Wesley Hales

Multiple h:datatable in detailStamp

2006-09-29 Thread Wesley Hales
                          My main objective is to have the child tables in the detailStamp sort and page independent of each other. Thanks for any help on this,Wesley Hales