Re: Internationalization - East-european-characters in resourcebundle

2006-03-10 Thread Harald Müller
Hi! Thank you ... works great! Brgds H So ... Is there a way to extend ResourceBundle, fill it up with parsed values from the xml-file and finally use it in my jsf-page (with f:loadBundle/)? Yes, exactly that way. *) extend a class from ResourceBundle *) implement protected Object

Internationalization - East-european-characters in resourcebundle

2006-03-09 Thread Harald Müller
Hi! I'm having problems with east-european characters in resourcebundle. Bad characters are (example): Ššľť I've tried to convert it into unicode but that does not seem to work for all characters. I have no problem to read from a xml-file correctly (of course). So ... Is there a way to

autoUpdateDataTable commandLink

2006-01-10 Thread Harald Müller
Hi! I've some problems getting the commandLink working correctly within an autoUpdateDataTable. My code looks like: h:form id=form_tasklist s:autoUpdateDataTable id=data1 rows=5 headerClass=tableheader columnClasses=tablecell var=taskInstance

Re: autoUpdateDataTable commandLink

2006-01-10 Thread Harald Müller
for homeBean.ajaxTaskInstances ... with no success! :-( Ah ... and I set preserveDataModel=false and preserveRowStates=false. Any suggestions? Thanks for your help! H -Ursprüngliche Nachricht- Von: Harald Müller [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 10. Jänner 2006 12:42 An: users@myfaces.apache.org

AW: JSF support East Asian characters ?

2006-01-07 Thread Harald Müller
Hi! I had to implement a CharsetFilter like mentioned here: http://wiki.apache.org/tomcat/Tomcat/UTF-8 (had some problems with east-european characters)! Hope this helps, H Von: Dave [mailto:[EMAIL PROTECTED] Gesendet: Samstag, 07. Jänner 2006

Re: AW: Eventually Bugs in InputSuggestAjax

2006-01-05 Thread Harald Müller
Hi! Is there a special configuration needed to compile it? Always get an error: [INFO] Failed to resolve artifact. GroupId: org.apache.myfaces ArtifactId: myfaces Version: 1.1.2-SNAPSHOT Reason: Unable to download the artifact from any repository

Re: datatable - parameter passing - workaround?

2005-12-15 Thread Harald Müller
-Ursprüngliche Nachricht- Von: Mathias Brökelmann [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 15. Dezember 2005 15:46 An: MyFaces Discussion Betreff: Re: datatable - parameter passing - workaround? is your problem solved now? 2005/12/14, Harald Müller [EMAIL PROTECTED]: Hi! Thank you

Re: datatable - parameter passing - workaround?

2005-12-14 Thread Harald Müller
? Is data.getRows() returning a non empty collection? Can you try it with jsp code? 2005/12/13, Harald Müller [EMAIL PROTECTED]: Hi! Thanks again for your answer. Mh ... I've tried it as described on the wiki-page but it looks like that I'm doing something wrong with UIColumns. My code

Re: datatable - parameter passing - workaround?

2005-12-14 Thread Harald Müller
, Harald Müller [EMAIL PROTECTED]: Sorry ... my mistake ... The problem is not that every column of each row has the same content (that's exactly what the code does) ... but I always get the object of the first row with mRowHolder.getRowData(). Output: Col1 Row1 Name_of_row1 Row2

Re: datatable - parameter passing - workaround?

2005-12-13 Thread Harald Müller
with your code below. Maybe you could describe the problem you're trying to solve? Regards, Simon Harald Müller wrote: List contentList = new ArrayList(); for (int i = 0 ; i10;i++) { contentList.add(row + i); } DataModel content = new ListDataModel(contentList); hdt.setValue(content

Re: datatable - parameter passing - workaround?

2005-12-13 Thread Harald Müller
- workaround? did you take a look at t:columns ? I suggest you to use it if you need dynamic columns. You could then follow the wiki doc at http://wiki.apache.org/myfaces/Dynamic_Columns 2005/12/13, Harald Müller [EMAIL PROTECTED]: Hi! Thanks for your answer. Let me try to describe my problem. I'm

datatable - parameter passing - workaround?

2005-12-12 Thread Harald Müller
Hi! My current (test)code to create a datatable in a dynamic created tab looks like this: // datatable UIData hdt = (HtmlDataTable)app.createComponent(HtmlDataTable.COMPONENT_TYPE); hdt.setId(hdtId1); hdt.setVar(hdtVar1); tab.getChildren().add(hdt);

Re: datatable - parameter passing - workaround?

2005-12-12 Thread Harald Müller
() to get the current row value during the iteration. 2005/12/12, Harald Müller [EMAIL PROTECTED]: Hi! My current (test)code to create a datatable in a dynamic created tab looks like this: // datatable UIData hdt = (HtmlDataTable)app.createComponent(HtmlDataTable.COMPONENT_TYPE

Re: What is wrong with this code

2005-12-09 Thread Harald Müller
Hi! I'm having the same troubles getting the content of a htmldatatable displayed. My code looks like this: public HtmlPanelTabbedPane getTabPane() { Application app = FacesContext.getCurrentInstance().getApplication(); // tabbedpane HtmlPanelTabbedPane hptp =

AW: What is wrong with this code

2005-12-09 Thread Harald Müller
inline and see what is rendered. (should show 10 equal rows, exept the last column, btw.) Harald Müller wrote: Hi! I'm having the same troubles getting the content of a htmldatatable displayed. My code looks like this: public HtmlPanelTabbedPane getTabPane() { Application app

AW: panelTabbedPane with dynamic-tabs

2005-12-08 Thread Harald Müller
2005 08:05 An: MyFaces Discussion Betreff: Re: panelTabbedPane with dynamic-tabs Try using the the binding attribute with t:panelTabbedPane . This will allow you to programmatically add or substract each tab. Original message Date: Thu, 8 Dec 2005 00:39:28 +0100 From: Harald Müller

panelTabbedPane with dynamic-tabs

2005-12-07 Thread Harald Müller
Hi! I'd like to use the panelTabbedPane and create the tabs dynamically (reading from a xml-file). I'm getting a list of objects from my bean and for each list-item a new tab should be generated. My jsf-code looks like this: t:panelTabbedPane bgcolor=#CC c:forEach