Re: Fw: Pb installing Tobago examples app.

2007-06-18 Thread Udo Schnurpfeil
Hello, the demo (1.0.11 and 1.0.12-SNAPSHOT) is running on my tomcat 6 (MacOSX 10.4, Java 6) without problems. Which OS and which Java you are using? Do you using Tomcat standalone? I've seen Glassfish in the first stacktrace. Regards Udo clec schrieb: Hello, About my previous email, I

Re: [tobago] how can I have a list of radio boxes in a sheet (one in each line) and belonging to the same group

2007-06-18 Thread Udo Schnurpfeil
Hallo Zied, there is a special tag for almost this job: tc:columnSelector. But AFAIK in the moment the only selection model is multiselect. This tag should be extended to other selection models like singleselect. You may add a JIRA issue for this. Regards Udo Zied Hamdi schrieb: is it

Re: [Tobago] Problem with JSTL

2007-01-28 Thread Udo Schnurpfeil
Hello Madan, seens this is not a Tobago but a JSTL question. Do you have an implementation for the JSTL in your classpath? You need both: API + Impl. You may use the apache implementation (standard.jar): See http://jakarta.apache.org/taglibs/ If using maven try to add: dependency

Re: Unable to deploy Tobago 1.0.9 demo App in WebLogic 8.1.4

2007-02-12 Thread Udo Schnurpfeil
Hello Alan, which Java Version you are using? Default for WLS is JRockit 1.4.2_05. But the Tobago Demo is running with Java 5 only, by default. To running Tobago Example Demo with JDK 1.4 you have to build it with the retrotranslated dependencies. Regards Udo TUCKER Alan schrieb: Just

Re: [Tobago] global settings possible?

2007-02-21 Thread Udo Schnurpfeil
Hallo Michał, its not possible yet. I think you can use alternativly some technologies: * JSP Tag-Files (Has the disadvantage that when you not set an attribute the tag file will set it to (empty string), which may problematic in some cases) * Write your own tag. Like

Re: [Tobago] global settings possible?

2007-02-26 Thread Udo Schnurpfeil
Hello Michał, You can see how to create a new tag by composing other tag here: https://svn.apache.org/repos/asf/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/extension/LabelExtensionTag.java You will need to write a TLD-file, an may register it. (In Tobago the file

Re: [ Tobago ] Regarding Alignment Problems with gridLayout

2007-02-26 Thread Udo Schnurpfeil
Hello Madan, tc:column is only for Columns inside of tc:sheet. tc:cell is useful if there is a tc:gridLayout facet in the parent container to set spanX and/or spanY tc:panel may have its own layout-manager. A simple sample you can see here:

Re: [Tobago] tc:tab won't resize

2007-02-26 Thread Udo Schnurpfeil
Hallo Michał, I think I've the same scenario working, with 1.0.9 and also 1.0.10-SNAPSHOT How do you realize the resizing of the page? Udo Michał 'Gandalf' Stawicki schrieb: Hi, I have a tc:page that always sets its' size to maximum. So, if a user resizes his window, after next submit the

Re: [Tobago] nesting tc:sheet

2007-02-26 Thread Udo Schnurpfeil
tc:selectItems may resolve your problem, it is similar to f:selectItems but allows $-Expressions, as far as I know. So you can use forEach. Do you really need nested loops? Is the inner a loop over the items? Then you can use ?:selectItems instead of ?:selectItem. Regards Udo Michał

Re: tobago demo 109 : tc tree control: Faces Tree recurring problem

2007-02-26 Thread Udo Schnurpfeil
Hello, you may use the upcoming new tree from the sandbox. I've added a simple editor in the tobago-example-sandbox. It shows how an editor may written (in the moment it is a VERY simple example, it only adds one node to the selected node). Regards, Udo ws_dev2001 schrieb: Hi all, I am

Re: [Tobago] Problem with immediate=true

2007-05-03 Thread Udo Schnurpfeil
Hello Helmut, immediate means, that the values will not validated and will not update the model. But the submitted values are still in the component. To fix your problem your reset() should return the correct outcome != null. In this case you will get a brand new UI-component-tree. Hope

Re: [ Tobago ] Help Regarding invoking Managed Bean from dos/unix shell

2007-05-07 Thread Udo Schnurpfeil
You may extend the NonFacesRequestServlet like in the tobago-example-nonfacesrequest. Regards Udo Madan Narra schrieb: Hi All, I have a doubt which may / may not be related to Tobago , but its sure that its related to JSF. I have a cron job running on UNIX platform , which is scheduled

Re: [ Tobago ] Help Regarding invoking Managed Bean from dos/unix shell

2007-05-07 Thread Udo Schnurpfeil
In the FishServlet is a reference to the managed bean fishPond. It can be used after: FishPond fishPond = (FishPond) VariableResolverUtil.resolveVariable(facesContext, fishPond); Regards Udo By the way, the NonFacesRequestServlet is a way to provide external links with parameters to a

Re: [Tobago] tx:date EndDate not before BeginDate

2007-05-22 Thread Udo Schnurpfeil
I only see 2 options, both standard JSF: 1. check manually in the action method, use facesContext.addMessage() 2. write your own validator I don't know a more declarative way in the moment. Regards, Udo Clemens Sietas schrieb: Hello, I have another question regarding the datepicker.

Re: [Tobago] Locale changed when handling exceptions

2010-02-05 Thread Udo Schnurpfeil
Hi Alf, where do you call FacesContext.getCurrentInstance().getViewRoot().setLocale(selectedLocale)? Do you use the f:view locale= attribute? Refards, Udo Alf Felis schrieb: Hi all, my assumption was wrong that the session will be invalidated! But my problem still exist... the locale

Re: Tobago Renderer with JSF RI

2010-02-12 Thread Udo Schnurpfeil
Hi, generally Tobago can not be combined with any other tags libs freely. You can use f: tags, but not h: tags. The main reason is, that in Tobago every container has a layout-manager which set the position of the component. You may use tc:link instead of h:commandLink. An other effect is,

Re: [TOBAGO] Master-Detail

2010-03-11 Thread Udo Schnurpfeil
Hello Fernando, here are the allowedValues = {click, dblclick} of event in tc:columnEvent (I've added this to the docu, now). The tc:attribute is the Tobago-version for f:attribute. The allowed (and reasonable) values for name and value depends on the parent UIComponent. Regards, Udo

Re: [Tobago] Problem using JSP tags with attributes

2010-03-18 Thread Udo Schnurpfeil
Hi Alf, The expression #{${dataBean}.errors} works in older Servlet APIs with Tobago. It should work until Tomcat 5.5, but doen't work with Tomcat 6.0. It also doesn't work with Facelets, but in Facelets you may use #{dataBean.errors} instead. For JSPs #{dataBean.errors} will work, when

Re: [TOBAGO] formatting fields with tx:in

2010-03-18 Thread Udo Schnurpfeil
Hi Fernando, this feature is not implemented yet. A global solution might be, sending the String via AJAX on blur to the Converter and let him Format it. We should add this into JIRA. But I don't know, if I want that while typing. It may be irritating the user. Nevertheless you can realize

Re: [TOBAGO] tx:date in a popup

2010-03-18 Thread Udo Schnurpfeil
Hi, It seems to be a bug. It is correct that you tested it with Internet Explorer? With Firefox it works fine. On the demo app, the AJAX variant to open the popup hasn't this bug. Maybe this is a quick workaround for you. Regards, Udo Am 17.03.10 17:41, schrieb Fernando Augusto: Hello,

Re: [Tobago] Problem using JSP tags with attributes

2010-03-18 Thread Udo Schnurpfeil
Okay, I think I understand what you need. In Tobago the tx:-library was similar. Take some components and combine it to a new one. But because of the disadvantages of Tag-Files we coded it with Java-Code :-( Did you tried running your app with Tomcat 5.5? There are different solutions. The

Re: [TOBAGO] tx:date in a popup

2010-03-19 Thread Udo Schnurpfeil
Hi Fernando, we have fixed the bug in IE. Can you please test the 1.0.25-SNAPSHOT if it works for you? You have to build it by yourself. Is this okay for you? Regards Udo Am 18.03.10 14:29, schrieb Udo Schnurpfeil: Hi, It seems to be a bug. It is correct that you tested it with Internet

Re: [TOBAGO] SelectOneChoice and Rendered attribute

2010-03-20 Thread Udo Schnurpfeil
You may have a type problem. Maybe the itemValue allows only Strings. When you don't set immediate=true you will see an error in that case. You can also use tc:selectItems with a class model. With that integer value should work. The value for tc:attribute is the clientId of the component: This

Re: [TOBAGO] Controls self-adjusted in the page

2010-03-23 Thread Udo Schnurpfeil
Hi Fernando, a usual solution is to have a start/welcome/waiting page. This page may automatically forwards to your application, after checking the size of the browser (which will be done automatically). You can also use a login page for that. Is this a solution for you? If not, you may call

Re: [TOBAGO] Controls self-adjusted in the page

2010-03-23 Thread Udo Schnurpfeil
In Tobago 1.5 the layout management (was rewritten) a moved to core. Udo Am 23.03.10 04:55, schrieb Fernando Augusto: Another question regarding GridLayout class... Why is it inside scarborough theme JAR instead of a core jar, that will be distributed even if I change themes and remove

Re: [TOBAGO] Controls self-adjusted in the page

2010-03-23 Thread Udo Schnurpfeil
a few times makes the appearance get better. @Udo: I am sending you in PVT the URL, with login/pwd for you to see the problem. Best Regards, Fernando Augusto Udo Schnurpfeil escreveu: Hi Fernando, a usual solution is to have a start/welcome/waiting page. This page may automatically

Re: grid layouts in Tobago

2010-04-16 Thread Udo Schnurpfeil
Hi tobagouser, you can put 2 tc:panel in the box like this: tc:box f:facet name=layout tc:gridLayout columns=*;*/ /f:facet tc:panel f:facet name=layout tc:gridLayout rows=fixed;fixed/ /f:facet tc:in/ tc:in/ tc:in/ /tc:panel tc:panel f:facet name=layout tc:gridLayout rows=fixed;fixed/

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] 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-23 Thread Udo Schnurpfeil
way to convert the int to long in EL. It would help to save a lot of work.. Thanks best regards Michael Udo Schnurpfeil schrieb: 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

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

2010-04-23 Thread Udo Schnurpfeil
? The f:selectItem works not with JSF 1.1, but the tc:selectItem works with 1.1 and 1.2. Regards, Udo Am 23.04.10 09:59, schrieb Udo Schnurpfeil: Hi Michael, there are more than one solution for that, but as far as I know there is not cast operator... 1. use a managed bean faces-config.xml

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

2010-04-27 Thread Udo Schnurpfeil
me know whether tc:style tag applies at the page level only or applies at the child tags like panel and box. also please let me know how to add a new css to box footer and why the above css does not worked. Thanks, KSK Udo Schnurpfeil wrote: Hi, The simple way: You can also put a file

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

2010-04-29 Thread Udo Schnurpfeil
I've fixed it in the current trunk and the current 1.0.x branch, so it will be available in version 1.0.26. (See my mail form 23. April, 23:19 CEST) Regards Udo I'm not really understanding why the mapping does not works with tc:selectItem but for know I have a working solution.

Re: [Tobago] foreach in c:sheet

2010-05-25 Thread Udo Schnurpfeil
Hello Hani, I've never tried to use c:set, so I have no experience with that tag. Your code will not work, because the content inside of the tc:sheet will be visited only one time. The JSTL Tag needs to be called in each row to make it work. Mixing JSTL and JSF and use of iterators have some

Re: [Tobago] foreach in c:sheet

2010-05-28 Thread Udo Schnurpfeil
} / /c:forEach /tc:panel /c:forEach /tc:panel /tc:column I've used jstl 1.1. Thank you. -Ursprüngliche Nachricht- Von: Udo Schnurpfeil [mailto:u...@schnurpfeil.de] Gesendet: Dienstag, 25. Mai 2010 09:16 An: users@myfaces.apache.org Betreff: Re: [Tobago

Re: [Tobago] foreach in c:sheet

2010-06-01 Thread Udo Schnurpfeil
and the links of elements has differnent attributes. Thank you for the help. Regards, Hani -Ursprüngliche Nachricht- Von: Udo Schnurpfeil [mailto:u...@schnurpfeil.de] Gesendet: Freitag, 28. Mai 2010 09:30 An: users@myfaces.apache.org Betreff: Re: [Tobago] foreach in c:sheet Hi Hani, to find

Re: [Tobago] foreach in c:sheet

2010-06-01 Thread Udo Schnurpfeil
there is a little style problem with tc:progress inside of tc:sheet (line break between the elements, when the column is too small), but I will fix it in the next version) Hope that helps Udo Am 01.06.10 09:49, schrieb Udo Schnurpfeil: Hi Hani, didn't you sent the image or removes the list

Re: [Tobago] Problem using tc:tree and request parameters

2010-06-17 Thread Udo Schnurpfeil
Hi Alf, I've some questions: Which Tobago version and which JSF implementation and version you are using (and which container)? In which scope is the managed bean that holds the state? I don't exactly know what happens, because I've not the sources of you code. But I can try some

Re: [Tobago] calling of renderer class

2010-06-24 Thread Udo Schnurpfeil
Hi, there is also an example-theme in the project (https://svn.apache.org/repos/asf/myfaces/tobago/branches/tobago-1.0.x/example/tobago-theme-example/) which overrides the InRenderer. Regards Udo Am 23.06.10 09:45, schrieb Volker Weber: Hi Hani, the easiest way to overwrite a Renderer is

Re: [Tobago] calling of renderer class

2010-07-13 Thread Udo Schnurpfeil
way or is there another way to solve it? Regards, Hani -Ursprüngliche Nachricht- Von: Udo Schnurpfeil [mailto:u...@schnurpfeil.de] Gesendet: Freitag, 25. Juni 2010 07:46 An: users@myfaces.apache.org Betreff: Re: [Tobago] calling of renderer class Hi, there is also an example-theme

Re: [Tobago] Problem using tc:tree and request parameters

2010-07-13 Thread Udo Schnurpfeil
Hi Alf, I think the request parameters are working like expected. Only in the case of reload it will depend, if you make a reload of the get or the reload of a later post request. A reload of a post will normally reposted after the browser has asked the user (may depends on browser and

Re: [Tobago] Problem using tc:selectOneChoice

2010-07-29 Thread Udo Schnurpfeil
Hi Hani, please report an issue in the Jira. (The problem looks like the known issue with ie6 and select tags in IE6) Regards, Udo Am 29.07.10 12:22, schrieb Abushammala, Hani (EXTERN: FTP): Hi all, I habe a problem by using tc:selectOneChoice in a sheet. Internet Explorer displays the

Re: [Tobago] Problem using tc:tree and request parameters

2010-08-06 Thread Udo Schnurpfeil
-path: /Tobago jsf_viewid: /TobagoTreeTest.jsp _idJsp0::form-clientDimension: 913;700 _idJsp0:nav: ;Home;Number1; _idJsp0:nav-marker: _idJsp0:nav:Number1 tobago.dummy: _idJsp0:nav-scrollPosition: Regards, Alf -Ursprüngliche Nachricht- Von: Udo Schnurpfeil Gesendet: 17.06.2010 09:59:42

MyFaces Test with JSF 1.1

2010-09-14 Thread Udo Schnurpfeil
Hi, in version 1.0.0 there is no support for JSF 1.1, but I've seen some code, that consider JSF 1.1. Is there a plan to make the test12 version also runnable with JSF 1.1? It seems to me, that we can build an artifact, that supports JSF 1.1 and 1.2 coexistent, to keep the management

Re: MyFaces Test with JSF 1.1

2010-09-15 Thread Udo Schnurpfeil
Hi Jakob, there is an easy solution to make myfaces-test12 usable to test applications running with JSF 1.1. I will create an Jira issue and fix that. To make the project build-able with JSF 1.1 is more complex and not needed for me. Regards, Udo Am 14.09.10 16:47, schrieb Jakob

Re: [Tobago] FileUpload from popup supported?

2010-09-21 Thread Udo Schnurpfeil
Hello Michael, there are two options to use the fileupload, see http://myfaces.apache.org/tobago/faq.html#tobagofileupload The jar-option might be better than the filter-option. You can find an example in the addressbook demo. If you still have problems with the Java exceptions, please sent

Re: [tobago] Validation in Popups

2010-09-28 Thread Udo Schnurpfeil
Hello Michael, please try to put the form outside of the command tag, which opens the popup. This should solve your problems. The background is: The popup must be inside the form to consider it was already active. Regards, Udo Am 23.09.10 22:29, schrieb Michael Kakuschky: Hello, I have

Re: [tobago] Validation in Popups

2010-10-08 Thread Udo Schnurpfeil
/tc:cell /tc:box /tc:popup /f:facet /tc:button /tc:panel /tc:form Am 28.09.2010 15:12, schrieb Udo Schnurpfeil: Hello Michael, please try to put the form outside of the command tag, which opens the popup. This should solve your problems. The background is: The popup must be inside the form

Re: [tobago] Validation in Popups

2010-10-09 Thread Udo Schnurpfeil
, schrieb Udo Schnurpfeil: Hi Michael, I've just rechecked you sample, but I can't reproduce the problem. So, it may depends on some odd diffence of my and you environment. Let be describe what I did: 1. svn co https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.30/example/demo/ demo

Re: [tobago] tx:in update problem

2010-10-18 Thread Udo Schnurpfeil
Hi Michael, the behavior you describe seems to be normal for JSF (in the moment I doesn't now that this has changed from JSF 1.1 to JSF 1.2). When readonly is false the value will be submitted, but not written into the model. After an action with outcome null the same view root will be

Re: [Tobago] Multiple dynamically created menu items.

2010-10-22 Thread Udo Schnurpfeil
Hi DOM! I'm not sure what you are looking for. You can use this: Am 20.10.10 18:42, schrieb d.o@gmx.net: Dear all, Is it possible to dynamically create multiple tc:menuItems. I am looking for a similar behavior that can be implemented with tc:selectItems for e.g. tx:menuRadio.

Re: [Tobago] Multiple dynamically created menu items.

2010-10-22 Thread Udo Schnurpfeil
(ups, pressed wrong key) Hi DOM! I'm not sure what you are looking for. Do you know you can use this? tx:menuRadio action=#{clientConfigController.submit} value=#{clientConfigController.locale} f:selectItems value=#{clientConfigController.localeItems} /

Re: [tobago] How to use tc:tree control for navigation

2010-10-26 Thread Udo Schnurpfeil
Hi Michael, the navigation of the tobago-example-demo is implemented with tc:tree. For Tobago 1.0 you need a Java object that holds the nodes, see navigation.jsp (you need a facet for action/navigation). For Tobago 1.5 you can also create the node directly in the page, see navigation.xhtml

Re: [Tobago] Text of labels is too much shifted to the top.

2010-10-28 Thread Udo Schnurpfeil
Hi dom, I totally agree with you. Please file a ticket in Jira. Regard, Udo Am 27.10.10 12:02, schrieb d.o@gmx.net: Hi all, the text of all labels is too much shifted to the top. Examples can be seen in the Tobago Demo for any of those themes: Richmond, Speyside, Charlotteville

Re: [Tobago] Problem while determining the view id

2012-02-27 Thread Udo Schnurpfeil
Hallo Hani, sorry, but I'm not sure what your scenario is. Where do you use '../faces' and why? In the link attribute of a tc:link or tc:button or in navigation rules? Or in links from outside of JSF? There is a part in JSF that guesses the view id from the URL and it might be a problem when

Re: [Tobago] Is migration to Tobago 1.5.* recommended?

2012-05-21 Thread Udo Schnurpfeil
Hi Dom, sorry for the late response. Generally I encourage you to migrate to 1.5.x. I think you should update JSF to 1.2 and Tobago to 1.5.x at the same time. That might be less effort for programming and testing. In special, it depends a little from you application, because we need some API

Re: facelet

2005-12-06 Thread Udo Schnurpfeil
I think it is not possible to combine tobago with facelets. I haven't used facelets, but I think facelets are based on HTML-designed JSP source code. Tobago on the other side abstracts from HTML. There are no HTML-Tags in the JSP source code. There are only abstract tags. The Renderkit

Re: myfaces in weblogic

2005-12-06 Thread Udo Schnurpfeil
Which service pack? Udo Peter Maas wrote: Hi all, I'm trying to get a basic myfaces application to run on weblogic 8.1 but without any luck yet. I googled arround a bit and found some contradicting bits on form but no 'THIS is how to to it, THIS is why'. The problem I'm running into seems

Re: How can I redirect from a servlet to a JSF page (that isbacked by a bean)?

2006-01-17 Thread Udo Schnurpfeil
Hi Jeff, please try to map the NonFacesRequestServlet like: servlet-mapping servlet-nameNonFacesRequestServlet/servlet-name url-pattern/NonFacesRequestServlet/url-pattern /servlet-mapping And use the external URL: http://localhost:8080/ebusiness/faces/NonFacesRequestServlet?id=1 By

Re: myFaces - servlet redirect.

2006-01-17 Thread Udo Schnurpfeil
I've also tested it, and figured out, that it works also with the Sun Implementation WITHOUT Volkers change. So the Sun stuff works a little different. We should find the correct way (without hacking) and put an full example somewhere... Jeffrey Porter schrieb: THANKS! I defiantly owe you

Re: myFaces - servlet redirect.

2006-01-17 Thread Udo Schnurpfeil
I think, the mapping for the NonFacesRequestServlet can also called /faces/NonFacesRequestServlet (it might be a little nicer) to the difference of myfaces and the sun-ri: I've setup an example here

Re: myFaces - servlet redirect.

2006-01-18 Thread Udo Schnurpfeil
/NonFacesRequestServlet i got /servredirect/faces/NonFacesRequestServlet/jsp/theBackingBean.jsp for the action attribute of the form element. Regards, Volker Udo Schnurpfeil wrote: I think, the mapping for the NonFacesRequestServlet can also called /faces/NonFacesRequestServlet (it might be a little

Re: t:sheet autostretching

2006-01-25 Thread Udo Schnurpfeil
Hi Olexandr, do you have a width and height in the tc:page tag? You may set it in almost all cases. (this might be required) The LayoutManager computes in the moment only fix sizes. If you want your application to autoresize to the browser-window you have to define the page like this: tc:page

Re: Tobago t:tree : visual indicator for the current node.

2006-02-09 Thread Udo Schnurpfeil
Not in the moment, but it should, so I've added an issue: https://issues.apache.org/jira/browse/MYFACES-1107 Regards Udo Iryna Stetska schrieb: I'm using t:tree. I would like to have some visual indicator (different backgroung, color or style) for the tree node currently selected (which is

Re: There's an issue with synching tobago sheet to backing bean

2006-03-04 Thread Udo Schnurpfeil
I think this is not a tobago issue. It is evident. The problem seems, that the index can't be use it identify an item. Solutions: 1. You may put your list in the session scope. 2. Using request scope: I need some information. How do you access to the selected item? Code sample? Regards

[Tobago] Simplified theme handling

2006-03-04 Thread Udo Schnurpfeil
Hello, the theme handling was simplified, so you need to change something in your build process. See https://issues.apache.org/jira/browse/TOBAGO-20 You have 2 possibilities: 1. For easy development: a) Put the theme jar in the classpath *) b) Define a ResourceServlet in the

Re: How Does JDeveloper Compare with Java Studio Creator

2006-03-04 Thread Udo Schnurpfeil
The EAP build 5175 of IntelliJ has JSF support. It's not ready-made, but it looks promising :-) Udo Martin Marinschek schrieb: Ok I'd have moved from IntelliJ if that was better (IntelliJ not offering JSF support at all). Have to stay some more ;) regards, Martin On 3/4/06, Yee CN [EMAIL

Re: [Tobago] Simplified theme handling

2006-03-07 Thread Udo Schnurpfeil
configuration. Sorry for any trouble. Udo Udo Schnurpfeil schrieb: Hello, the theme handling was simplified, so you need to change something in your build process. See https://issues.apache.org/jira/browse/TOBAGO-20 You have 2 possibilities: 1. For easy development: a) Put the theme jar

Re: Using VariableResolver or ValueBinding in NonFacesRequestServlet

2006-03-14 Thread Udo Schnurpfeil
Hallo Hubert, can you show me the example, and the error stack trace? The way with the VariableResolver works in my case, with Sun RI and MyFaces. The ValueBinding I've not tried. There is also an example with tobago:

Re: [TOBAGO] removing label attributes from components

2006-04-01 Thread Udo Schnurpfeil
Please do not remove it now. Keep it deprecated for a short while. And please keep the labelWithAccessKey and accessKey attributes also as deprecated. Regards Udo Volker Weber schrieb: Hi, cc'ing to users@ to inform tobago users. I'm working on TOBAGO-10 (Combine the attributes label,

Re: Having trouble with JSTL inside JSF

2005-08-26 Thread Udo Schnurpfeil
by the renderer (2 times), the value of #{foo} equals #{foo2}, because it will be done at the end tag of the panel (/t:panel). regards Udo Martin Marinschek wrote: Well, there is a way in MyFaces to do so. check out the t:aliasBean! regards, Martin On 8/26/05, Udo Schnurpfeil [EMAIL PROTECTED] wrote

Re: TR : Dynamic Locale change

2005-08-26 Thread Udo Schnurpfeil
If you set the locale in the UIViewRoot manually, I don't know if it will be passed on to the next UIViewRoot. One solution for you might be putting the users locale in the session (e.g. the key locale or user.locale if your have a user object) and use the locale attribute f:view

Re: [newbie] Navigation does not work

2005-09-13 Thread Udo Schnurpfeil
Matt -- hicham ABASSI [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -- Dipl.-Math. Udo Schnurpfeil - Executive Officer - Atanion GmbH Software Development - Bismarckstraße 13 - 26122 Oldenburg - Germany phone +49 441 4082310 - mobile +49 174 9784746 - fax +49 441 4082333

Re: [newbie] Navigation does not work

2005-09-13 Thread Udo Schnurpfeil
I assume it is one of those tiny yet stupid newbie problems but I can't wrap my brain around it... Okay, I've found it ;-) Your have used the f:view tag 2 times on one page. That is not allowed and will evidently confusing the framework.

Re: Custom Component

2005-09-15 Thread Udo Schnurpfeil
From: Udo Schnurpfeil [EMAIL PROTECTED] Reply-To: MyFaces Discussion users@myfaces.apache.org To: MyFaces Discussion users@myfaces.apache.org Subject: Re: Custom Component Date: Thu, 15 Sep 2005 12:30:49 +0200 Hi! What is the Java version? What is the MyFaces version? Udo Goyo Escobar Escalero

Re: Custom Component

2005-09-15 Thread Udo Schnurpfeil
) at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:675) Udo Schnurpfeil wrote: Which Faces implementation? Which version? What is the long version of Java? I'm wondering about the NullPointerException inside of java.lang.Throwable. What is the content of the JSP? Udo Goyo Escobar Escalero wrote

Re: TOBAGO: howto handle client side events (e.g. onchage) in t:selectManyCheckBox

2005-10-06 Thread Udo Schnurpfeil
Hello, this is a known problem, but we don't have a solution yet. The main idea of Tobago is that the source code (especially the JSP pages) are independent from the output format (e.g. HTML). If we allow to set onchange and onclick events, the source code will depend on the output format.

Re: TOBAGO: howto handle client side events (e.g. onchage) in t:selectManyCheckBox

2005-10-06 Thread Udo Schnurpfeil
A workaround is to put something like this on the page (inside the t:page). t:script onload=initOnChange(); function initOnChange() { var x = document.getElementById(page:username); x.onchange = onChangeFunction; } function onChangeFunction() { alert('username

Combining components

2005-10-07 Thread Udo Schnurpfeil
I've found a way to combine components to new tags. There was already some discussion on a similar topic: http://www.mail-archive.com/users@myfaces.apache.org/msg06438.html http://www.mail-archive.com/users@myfaces.apache.org/msg06369.html My first approach was to write a tag file (JSP 2.0)

[tobago] new TagLib tobago-extension.tld

2005-10-07 Thread Udo Schnurpfeil
: Please replace t:in by tx:in and add this declaration on the top of the page: %@ taglib uri=http://www.atanion.com/tobago/extension; prefix=tx % 2. Pages which use t:in without a label attribute: Nothing to do. Regards Udo -- Dipl.-Math. Udo Schnurpfeil - Executive Officer - Atanion

Re: [tobago] new TagLib tobago-extension.tld

2005-10-07 Thread Udo Schnurpfeil
P.S. tx:in label=foo value=bar/ is the same as t:panel f:facet name=layout t:gridLayout columns=fixed;*/ /f:facet t:label value=foo / t:in value=bar/ /t:panel but shorter, of course. Udo Udo Schnurpfeil wrote: Hello, I've started to split the tobago.tld into 2 pieces: one

Contribution of component library planned, live demo available

2005-07-21 Thread Udo Schnurpfeil
. Unfortunatelly the descriptive text in the demo is not available in English yet. Hoping to hear from you Udo Schnurpfeil

Re: Contribution of component library planned, live demo availabl e

2005-07-22 Thread Udo Schnurpfeil
Hi! What I like less: JavaScript usage I don't like JavaScript too. But the focus of the current themes in Tobago is to write web applications with a look and feel like a desktop application. We want to provide as much confort for the user as possible. So we can't drop that stuff.

Re: Contribution of component library planned, live demo available

2005-07-22 Thread Udo Schnurpfeil
Hi, in the moment the focus is on mozilla/firefox and ie. Better Safari and Opera support is on the tasklist. Currently I've bought a Mac, so I'm interested myself ;-) regards Udo Am 22.07.2005 um 08:39 schrieb Klug, Boris: Hi! great components! What I like is the menu component with the

Re: Contribution of component library planned, live demo availabl e

2005-07-22 Thread Udo Schnurpfeil
of the components? regards Alexander -Original Message- From: Udo Schnurpfeil [mailto:[EMAIL PROTECTED] Sent: Thursday, July 21, 2005 11:13 PM To: dev@myfaces.apache.org; users@myfaces.apache.org Subject: Contribution of component library planned, live demo available Dear MyFaces-Team, after

Re: [Tobago] Problem migrating to 1.0.15

2008-02-13 Thread Udo Schnurpfeil
Hi there, I've tested it and I didn't found any problems. Can you build a simple standalone JSP of your problem? You may also check, if you've set the columns attribute of the sheet correctly. Regards, Udo yazid schrieb: Hi All; I've migrated last week to 1.0.15; most of component are OK,

Re: [Tobago] Problem migrating to 1.0.15

2008-02-14 Thread Udo Schnurpfeil
I've build a simple demo page. It works in the tobago-example-demo on my box. You may try it. Regards, Udo yazid schrieb: Still not work, please Help I've tried the h:selectOneMenu.but I prefer tc:selectOneChoice ...better for facet. yazid wrote: Hi All; I've migrated last week to

Re: [Tobago] - How to programmatically set the label attribute of tc:box

2006-08-01 Thread Udo Schnurpfeil
You can set any attribute of any UIComponent in JSF like: component.getAttributes().put(key, value); where in your case key is label and value is your label. label should be used as TobagoConstants.ATTR_LABEL Hope that helps Udo P.S.: in later versions there might be a setter for the

Re: Internet Explorer on Windows 2003, 2000 breaks myFaces Tobago

2006-08-10 Thread Udo Schnurpfeil
Hi John, a) check if there occurs a JavaScript error. Is there the JavaScript Debugger installed? (I've had a problem with the aktivation of the debugger must switch it off and on before it works) b) Does e.g. the tobago-example-demo works on your system? c) jsf version? tobago

Re: [Tobago] ValueChangeListener not called

2006-10-09 Thread Udo Schnurpfeil
I'm working on integration of the gendoc in the demo And we should rename gendoc to tobago-tour or something else and add more component examples. Ok? Regards, Udo

[Tobago] Important changes to tc:tree (please rename tc:tree to tc:treeOld)

2006-11-13 Thread Udo Schnurpfeil
Hello, today I've started the development of the long outstanding fundamental change of the tc:tree tag. (The change was announced in the tld-file long time ago.) If you are using this tag and you want to update to version 1.0.9-SNAPSHOT of tobago you should change your code by renaming tc:tree

Re: [Tobago] multi row tabGroup?

2006-11-15 Thread Udo Schnurpfeil
Hi Helmut, there is an issue in Jira for a drop-down to show surplus tabs in a tabgroup. This will be resolved in the next time. *https://issues.apache.org/jira/browse/TOBAGO-176 Hope that helps Udo * [EMAIL PROTECTED] schrieb: Hi, is it possible to display the labels of the tabs in a

Re: [Tobago] Important changes to tc:tree (please rename tc:tree to tc:treeOld)

2006-11-15 Thread Udo Schnurpfeil
Udo Schnurpfeil schrieb: Hello, today I've started the development of the long outstanding fundamental change of the tc:tree tag. (The change was announced in the tld-file long time ago.) If you are using this tag and you want to update to version 1.0.9-SNAPSHOT of tobago you should change your

Re: [Tobago] Setter method tc:sheet

2006-11-16 Thread Udo Schnurpfeil
The tc:sheet can modify objects in the List, but will not set the list itself. HTH Udo PiotrekJ wrote: Hi again, Does tc:sheet support setter method? I can't do it. tc:sheet value=#{Bean.list}.. getList works, setList is not executed ;/ Th again, Peter

Re: [Tobago] tc:sheet with columns placed on different tabs

2006-11-16 Thread Udo Schnurpfeil
Hello Wojtek, you can put the sheet on multiple tabs and set in the columns you want to see rendered=true/false. Regards Udo Wojciech Blad schrieb: Hi All, Is possible to use one sheet control with columns placed on different tabs within single tabGroup? I have a table with large

Re: Trinidad vs Tobago

2009-06-05 Thread Udo Schnurpfeil
Hi all, let me explain the actual status of the Tobago development: We have branched the development into the tobago-1.0.x branch and the trunk which is the next major release. The tobago-1.0.x branch is stable and basis of the actual releases. The next release (1.0.21) will come up in the

Re: Tobago style sheet problem:

2009-06-05 Thread Udo Schnurpfeil
Hi, I didn't get what you want to change, sorry. Do you want to change one component on every page, or the general background, or only for a single page? Generally Firebug (for Firefox) is a great tool to find out the structure of the html and check which style effects a component. I

Re: Trinidad vs Tobago

2009-06-05 Thread Udo Schnurpfeil
Hi Christian, I know the issue with the forEach. There are many aspects to notice with the interation stuff. I've written a sample for tobago 1.0.x which works with the c:forEach from the JSTL. But this not works with Facelets and also not with JSP-Tag-Files (because scriptlets are not

Re: Trinidad vs Tobago

2009-06-05 Thread Udo Schnurpfeil
I forgot the link: http://svn.apache.org/repos/asf/myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/webapp/best-practice/for-each.jsp Udo Schnurpfeil schrieb: Hi Christian, I know the issue with the forEach. There are many aspects to notice with the interation stuff. I've written

Re: Trinidad vs Tobago

2009-06-25 Thread Udo Schnurpfeil
? Regards Helmut Udo Schnurpfeil schrieb: Hi all, let me explain the actual status of the Tobago development: We have branched the development into the tobago-1.0.x branch and the trunk which is the next major release. The tobago-1.0.x branch is stable and basis of the actual releases. The next

  1   2   >