Re: [EXT-SCRIPTING] A little bit of community help needed

2010-04-22 Thread Werner Punz
No one really interested as it seems, oh well... Werner Am 21.04.10 11:52, schrieb Werner Punz: Hello Everyone, this is not an official announcment but more a call for a little bit of community help. I am close to releasing the first stable version of a new MyFaces subproject. Apache MyFaces

Re: [EXT-SCRIPTING] A little bit of community help needed

2010-04-22 Thread Rudy De Busscher
Not true, but 24h is not much time to try something and especially when you have to do almost everything outside the working hours. Already a few things/questions. - on the configentries page you say : The scripting filter for further information look below but there is no below. - on the

Re: [EXT-SCRIPTING] A little bit of community help needed

2010-04-22 Thread Werner Punz
Ok thanks I just got the impression due to not having any feedback, that no one was really interested. I also had somewhat of a bad morning :-) Guess silence is not always an indicator that no one is interested. Am 22.04.10 11:05, schrieb Rudy De Busscher: Not true, but 24h is not much

Re: [EXT-SCRIPTING] A little bit of community help needed

2010-04-22 Thread Werner Punz
Ok I opened a new jira issue so that no comment is lost, I will then commit the documentation changes under this issue: https://issues.apache.org/jira/browse/EXTSCRIPT-125 And again thanks for your help. Werner Am 22.04.10 11:15, schrieb Werner Punz: Ok thanks I just got the impression

[Trinidad]ChartDrillDownListener

2010-04-22 Thread Jozef Dropco
I have following problem that I cant solve. I get strange exception. Caused by: javax.el.PropertyNotFoundException: /manager/overview.xhtml @197,147 chartDrillDownListener=#{facilityOverview.drillDown}: Property 'drillDown' not found on type beans.overview.FacilityOverviewBean but in

RE: [Trinidad]ChartDrillDownListener

2010-04-22 Thread GOVAERS Erik
Hi Jozef, Does the name of your managed bean class begin with capital 'F' (cf. FacilityOverviewBean in config)? Erik Erik Govaers Boomgaardstraat 22 | 2600 Antwerpen Tel.: 03 240 56 72 erik.gova...@welzijn.provant.be -Oorspronkelijk bericht- Van: Jozef Dropco

Re: [Trinidad]ChartDrillDownListener

2010-04-22 Thread Jozef Dropco
Sorry Erik, my fault I didnt copy/paste code but write it instead. this is exactly code which I have public class FacilityOverviewBean implements Serializable{ public FacilityOverviewBean() { } public ChartModel getHistory() { ListString group = new ArrayListString();

RE: [Trinidad]ChartDrillDownListener

2010-04-22 Thread GOVAERS Erik
Hi Jozef, Have a look at this http://www.mail-archive.com/users@myfaces.apache.org/msg54570.html Erik Erik Govaers Boomgaardstraat 22 | 2600 Antwerpen Tel.: 03 240 56 72 erik.gova...@welzijn.provant.be -Oorspronkelijk bericht- Van: Jozef Dropco [mailto:jozef.dro...@gmail.com]

Re: [Trinidad] Use Dojo with Trinidad

2010-04-22 Thread schneidc
Pretty old thread, though seems to be the best place for my question. I've been playing around with Dojo and Trinidad, I tried Daniels sample page but for reasons I don't understand (yet) it doesn't work. The html-elements are there but nevertheless the page appears blank. But I got another

Re: [Trinidad] Use Dojo with Trinidad

2010-04-22 Thread Werner Punz
Have you set your body styleClass to Tundra? Classical problem if you apply dojo, that you forget to add the style class to the body element. Dijit usually works works over constructs like that stylewise body.tundra ... .widgetType .subElement etc Also highly recommendable if you have a

Re: How to add new css to Tobago

2010-04-22 Thread Helmut Swaczinna
Hi, wich style.css do you mean exactly? Where is it located? You can add your own styles with the tc:style tag, e.g. tc:style style=style/mystyles.css /, under your resource path. Regards Helmut Am 22.04.2010 15:51, schrieb tobagouser: Any inputs on this please.. tobagouser wrote: Hi

Re: How to add new css to Tobago

2010-04-22 Thread tobagouser
Any inputs on this please.. tobagouser wrote: Hi All, I have tried to add tobago-box-footer to the style.css ,but it never affected the pages.Please could you let me know how to add a new css to tobago. Thanks, KSK -- View this message in context:

Re: [TOBAGO] problem selecting current item in tx:selectOneChoice

2010-04-22 Thread Volker Weber
Hi Michael, (btw yes i work together with Dirk Fangohr. sorry for the delay, was a bit busy last Friday) the problem is you has int as value in getActive() but String in select items. Try tc:selectItem itemValue=#{2} itemLabel=active/ tc:selectItem itemValue=#{1}

[ANNOUNCE] MyFaces Core v2.0.0 Release

2010-04-22 Thread Leonardo Uribe
The Apache MyFaces team is pleased to announce the release of MyFaces Core 2.0.0. MyFaces Core is a JavaServer(tm) Faces 2.0 implementation as specified by JSR-314. MyFaces Core has passed Sun's JSR-314 TCK and is 100% compliant with the JSR-314 specification. MyFaces Core 2.0.0 is

Re: [TOBAGO] problem selecting current item in tx:selectOneChoice

2010-04-22 Thread Udo Schnurpfeil
Hi, there is still a little problem with that. #{0} is a Long value, so the getter/setter needs be a also a Long and not an Integer. I don't know, if in EL there is something like a cast operator... Regards, Udo Am 22.04.10 18:20, schrieb Volker Weber: Hi Michael, (btw yes i work together

Re: [TOBAGO] problem selecting current item in tx:selectOneChoice

2010-04-22 Thread Michael Kakuschky
Hello Volker, thanks for reply. Now my tx:selectOneChoice box looks like the following. Converter is away and values in braces tx:selectOneChoice value=#{myController.active} label=active f:selectItem itemValue=#{0}

Re: [TOBAGO] How to add new css to Tobago

2010-04-22 Thread Udo Schnurpfeil
Hi, The simple way: You can also put a file style/style.css (exactly this name) in the webapp directory. The ResourceManager will find it and add it to the list of needed resources. The style will be effect all Tobago pages in one application. Helmut solution is also possible. The advantage

Re: [TOBAGO] problem selecting current item in tx:selectOneChoice

2010-04-22 Thread Michael Kakuschky
Hello Udo, hello Volker, both together (using braces for EL expression and long data type for getter and setter) helped to get the tx:selectOneChoice working like expected :-) Since I use many int getters and setters where I want to use the tx:selectOneChoice component it would be nice if