Re: [ANNOUNCEMENT] New sandbox component -- roundedDiv

2007-07-08 Thread Adrian Mitev
Nice! 2007/7/8, Andrew Robinson [EMAIL PROTECTED]: New component available in SVN called roundedDiv. See the documentation for more information: http://myfaces.apache.org/sandbox/roundedDiv.html TinyURL: http://tinyurl.com/38nrk9 -Andrew

Re: [Orchestra] Orchestra and ajax

2007-07-08 Thread Michael Marr
Hi, Mario Ivankovits wrote: I managed to find the problem and I think I fixed it. btw.: with the latest build I get a java.lang.IllegalStateException: no facesContext error. Works with an older build. fixed now too. Works great! Thanks a lot. Do you have plans for a release?

Re: ValueChangeListener challenges

2007-07-08 Thread Vladimir Isakovich
Andrew, I had no problem with 'correcting' null/ valueChangeEvent issue in my app, but I'm facing a weird problem with date fields always firing valueChangeEvent. What's wrong? I recall you as saying 'nobody is using this event'. Then what should I use? My goal is avoiding calls to DB for every

Re: [Orchestra] Orchestra and ajax

2007-07-08 Thread Mario Ivankovits
Hi Michael! Do you have plans for a release? Yes, I think to start a release mid August (after my vacation). Everyone should have had enough time then to uncover major bugs. Ciao, Mario

Re: ValueChangeListener challenges

2007-07-08 Thread Andrew Robinson
BTW - a value change event does not mean the data has been changed. What I mean by this is that the valueChangeEvent is fired during validation, not updating. This means that there is no guarantee that the updateModel method of the component will ever be executed, and thus your database would now

Re: ValueChangeListener challenges

2007-07-08 Thread Vladimir Isakovich
Yes, this is (about apples and oranges) what I'm trying to find. My backin type is java.util.Date. May be this is a problem? I just tried example with t:inputDate, and this is what I'm getting (much nicer): INFO %% entering APPLY_REQUEST_VALUES(2) in

Re: Tomahawk+DataScroller+WorkingWithLargeTables

2007-07-08 Thread Paul Iov
Daniel, I think your approach is ok. But... why do you need some properties-file? You can just extend my class with something like private boolean _invalidated = true; public void Invalidate(){ this._invalidated = true; } and then in private DataPageT doFetchPage(int startRow, int

Re: ValueChangeListener challenges

2007-07-08 Thread Andrew Robinson
There is a package in sandbox: org.apache.myfaces.custom.valueChangeNotifier Looks like Mario Ivankovits is the author. I didn't see any documentation for it though. That will give you change events during the update model. Another choice, is to queue the results of the events in the backing

Re: ValueChangeListener challenges

2007-07-08 Thread Vladimir Isakovich
I was and am trying the second approach (saving rather list indexes). Just have this problem with the Date type. Now I'm replacing j.u.Date with j.u.Calendar - did not get it working yet. My hibernate throws exception on first retrieve, I'm looking into it. vlad On 7/8/07, Andrew Robinson

Re: ValueChangeListener challenges

2007-07-08 Thread Vladimir Isakovich
Fixed Calendar issue with hibernate but DateTimeConverter blew up, could not convert: javax.faces.convert.ConverterException: java.lang.IllegalArgumentException: Cannot format given Object as a Date On 7/8/07, Andrew Robinson [EMAIL PROTECTED] wrote: There is a package in sandbox:

Re: [ANNOUNCEMENT] New sandbox component -- roundedDiv

2007-07-08 Thread Grant Smith
Very cool, Thanks! On 7/8/07, Adrian Mitev [EMAIL PROTECTED] wrote: Nice! 2007/7/8, Andrew Robinson [EMAIL PROTECTED]: New component available in SVN called roundedDiv. See the documentation for more information: http://myfaces.apache.org/sandbox/roundedDiv.html TinyURL:

[Trinidad] Change Bar Color in tr:chart

2007-07-08 Thread Andre_Fritsch
Hello! I need to change the bar color of the the trinidad svg chart to fulfil the corporate design guidelines. How can i achieve that? Do i need a custom TemplateSoure attribute or a custoum css? Thanks in advance! Andre -- View this message in context:

[Trinidad] Change Bar Color in tr:chart

2007-07-08 Thread Fritsch, Andre
Hello! I need to change the bar color of the the trinidad svg chart to fulfil the corporate design guidelines. How can i achieve that? Do i need a custom TemplateSoure attribute or a custoum css? Thanks in advance! André

AW: [Trinidad] tr:inputText required=true silently blocks submission

2007-07-08 Thread Michael Trompertz
Hello I think I had the same behaviour with an older version. After removing of the required=true everything woks fine. The problem was somewhere in the validation Javascript which never returned true. But this was fixed (maybe by Adam). Michael -Ursprüngliche Nachricht- Von: Adam

[Trinidad] Change Bar Color in tr:chart

2007-07-08 Thread Fritsch, Andre
Hello! I need to change the bar color of the the trinidad svg chart to fulfil the corporate design guidelines. How can i achieve that? Do i need a custom TemplateSoure attribute or a custoum css? Thanks in advance! André

[Trinidad] how to change chart bar color

2007-07-08 Thread André Fritsch
Hello! I´m a new Trinidad user and like to use the chart features. I already managed to get the chart from the example application into my application, but i need to adapt the chart colors to my corporate design. Therefore i´m using the templateSource attribute and set it to a .svg file which i

Re: Tomahawk+DataScroller+WorkingWithLargeTables

2007-07-08 Thread daniel ccss
Thanks again Paul, Ok tomorrow (monday) I will change the use of the property file, in fact I use it the Friday only to saw if what I was thinking of a way to force to do the fetch will work. Ok the other thing, the most critical for me right now, when I delete the last row I enter to the

Re: Tomahawk+DataScroller+WorkingWithLargeTables

2007-07-08 Thread Vladimir Isakovich
Paul, may be you know how to deal with this problem. On a date field I'm using valueChangeListener (I have java.util.Date in the backing bean). This listener is firing on submit no matter if the value is changed or not. In UIInput I see: public void validate(FacesContext context) {

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: Tomahawk+DataScroller+WorkingWithLargeTables

2007-07-08 Thread daniel ccss
Vladimir you can´t use a Calendar to pick the date in the format you want? On 7/8/07, Vladimir Isakovich [EMAIL PROTECTED] wrote: Paul, may be you know how to deal with this problem. On a date field I'm using valueChangeListener (I have java.util.Date in the backing bean). This listener is

Tomahawk dataScroller now is compatible with Trinidad

2007-07-08 Thread Bruno Aranda
Hi, I have just fixed the issue TOMAHAWK-777 and now it is possible to use the t:dataScroller and trinidad at the same time. Cheers, Bruno

Re: Tomahawk+DataScroller+WorkingWithLargeTables

2007-07-08 Thread Vladimir Isakovich
I was trying not to massage the incoming data in any way, but using the attributes in convertDateTime only. What I found so far, this approach works with the following setting: t:inputText value=#{customers.date} valueChangeListener=#{customers.orderChanged} f:convertDateTime

Re: [Trinidad] Change Bar Color in tr:chart

2007-07-08 Thread ven guddanti
The easiest way to do this is to override the getSeriesColor() method from the chartModel class. Here is the default implementation: public ListColor getSeriesColors() { return _defaultColors; } ... private static final ListColor _defaultColors = new ArrayListColor(); static {