Re: [TOBAGO] TYPE ERROR: value NOT instanceof SelectItem

2010-05-10 Thread Volker Weber
Hi Michael, the valueBinding of one of your selectItems tags returns a String ! Are there any other (tc|f):selectItems tags in your page? The path to the relevant component is in the stacktrace: /admin.jsp tc:page=page tc:tabgroup=Main tc:box=partnerDataBox tc:tabgroup=PartnerDetailsTab tc:panel=

Re: [TOBAGO] TYPE ERROR: value NOT instanceof SelectItem

2010-05-10 Thread Volker Weber
f myfaces and tobago is the standard one? Can the > reason somehow depend on the version of Windows? > > Best regards > > Michael > > Am 10.05.2010 09:34, schrieb Volker Weber: >> >> Hi Michael, >> >> the valueBinding of one of your selectItems tags

Re: [Tobago] foreach in c:sheet

2010-05-27 Thread Volker Weber
Hi, as Udo wrote, you can't use jstl inside tc:sheet! Or to be more precise: the var param of tc:sheet is not available when jstl iterates, because jstl evaluates before tobago starts renderring. I also can't imagine how you do this with component binding, because this is also done before renderi

Re: [Tobago] Javascript reload after Ajax Request.

2010-06-14 Thread Volker Weber
Hi, in tobago 1.0.x is no support for tc:script during ajaxReload :-( It is planned for 1.5, but, afaik, not implemented yet. You can solve this in 1.0.x by using a tc:out with script content inside the ajax reloaded panel. eg. replace a with a new Tobago.ScriptLoader(['ABSOLUTE_URL_TO_myFuncti

Re: [Tobago] calling of renderer class

2010-06-23 Thread Volker Weber
Hi Hani, the easiest way to overwrite a Renderer is to put your own int the tobago-resource-path into your application. e.g. if you use the speyside theme put your renderer, which must be named SheetRenderer, into the package /html/standard/speyside/tag/ Regards, Volker 2010/6/21 Abushammal

Re: [tobago] Validation in Popups

2010-10-04 Thread Volker Weber
Hi Michael, yes we have validation in Popups, but this is a bit hack like, nothing to show as example. The problem is the partial rendering and the popup handling in tobago 1.0.x: If you need validation inside a popup, you should not close the popup via popupClose attribute, but rerender the pop

Re: [tobago] rowIndex is less than -1

2011-06-01 Thread Volker Weber
Hi Michael, you should not change the value of a component outside of the InvokeApplicationPhase, or exactly only between end of UpdateModelValues and begin of RenderResponse! The valueBinding should not fetch the value from the backend (DB or whatever). You should hold a copy of your list in the

Re: Question using rendered attribute within fixed rows

2011-08-21 Thread Volker Weber
Hi Alf, these warning is caused by the incomplete analysis at this point in the layoutmanager. You can ignore this. In the layout calculation the fixed rows/cells are handled first, after layouting the first and the last row the full available space is used, but there is one row left, the hidden

Re: Use a button in a sheet and open a popup with the same row

2012-03-26 Thread Volker Weber
Hi AM, you should add a actionListener and a parameter to the button: ... and in suchController: public void selectDetail(ActionEvent event) { Object detail = ComponentUtil.findParameter(event.getComponent(), "detail"); // detail is your row var } Regards, Volker

Re: [tobago] Get how to change selected tab

2012-03-28 Thread Volker Weber
Hi Armin, first: please prefix the subject with "[tobago]" for tobago specific questions. what did the Button do? If you set the tabId = 0 in the code, the Tabgroup should render first tab. Didn't this work? which tobago version? Regards, Volker Am 28. März 2012 13:31 schrieb AM : > I have

Re: [Tobago] How to automatically maximize tc:page on initial view of applicaiton?

2012-04-10 Thread Volker Weber
Hi Dom, just put a initializing page in front of your app as startpage. The startpage could request the app page via javascript or button. Regards, Volker Am 9. April 2012 16:24 schrieb : > Dear all, > > I am working with Tobago 1.0.*. In general, the size of tc:page gets set > automati

Re: [TOBAGO] - Use a button in a PopUp

2012-04-21 Thread Volker Weber
Hi, i think, but not sure, the problem is the popup inside the sheet. try define the popup outside the sheet and open it via tc:popupReference in the button. Regards, Volker Am 20. April 2012 14:57 schrieb AM : > Hello! > > I'd like to insert into a method of my controller, when i click

Re: [Tobago] Image resizing

2013-11-20 Thread Volker Weber
Hi, the content of the column gets the width from the sheets column attribute. You should wrap the image into a panel: Regards, Volker 2013/11/14 Abushammala, Hani (EXTERN: BERIS) < extern.hani.abushamma...@volkswagen.de> > Hi, > > I need help to resolve a layout

Re: [Tobago] Image resizing

2013-11-20 Thread Volker Weber
> Hi Volker, > > thanks for the hint. I tried this way already, but it doesn't work. The > image could be displayed with fixed width. > > Any ideas? > > Regards, > Hani > > > -Ursprüngliche Nachricht- > Von: weber......com [mailto:weber..

Re: [Tobago] Image resizing

2013-11-21 Thread Volker Weber
Hi Hani, i think this is a performance issue but i found a solution: this works in the demo. Regards, Volker 2013/11/21 Volker Weber > Hi Hani, > > i see the problem. The valueBinding for the width is evaluated only once, > and this value is

Re: [Tobago] Image resizing

2013-11-21 Thread Volker Weber
.de> > Hi Volker, > > try to get the image width from the bean or from the var object. The image > will not be displayed. > > Regards, > Hani > > Von: weber.vol...@googlemail.com [mailto:weber.vol...@googlemail.com] Im > Auftrag von Volker Weber > Gesendet: Mittwoch

Re: [TOBAGO] Problem with building a UISheet

2014-04-23 Thread Volker Weber
Hi Michael, the sheet iterates over a collection of objects. You need to set the sheets value with this collection. regards, Volker 2014-04-23 10:36 GMT+02:00 Michael Linke : > Hello! > > I'm have some problems with creating a Table. I want to create a dynamic > table with some columns in

Re: inputSuggestAjax with state_saving_method set to server throws ClassCastException in AjaxPhaseListener at line 125

2006-01-31 Thread Volker Weber
Hi Shamanth, i saw this while developing tobagos AjaxPhaseListener by copying the myfaces listener and applying the needed changes. This is a unnessesary cast, but as this time i wasn't yet myfaces commiter and i don't had expect problems with this, so i fixed this for tobago and forgott it :-(.

Re: How to retrive request parameter in jsf pages

2006-01-31 Thread Volker Weber
Hi Legolas, try FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get("messageId"); Regards, Volker Legolas Woodland wrote: > Hi > thank you for reading my post. > how i can retrieve request parameter in jsf ? > for example if i have : > http://127.0.0.1/myproj/f

Re: Managed beans not being instantiated - No resolution?

2006-02-02 Thread Volker Weber
Hi John, as someone posted before. it is pretty unlikely that there is a problem with managed beans in myfaces, so there must be something wrong with your setup. But i can't see any other problems, than i had mentioned before, in your postet code. So the only thing i can further do is waiting fo

Re: AW: How to use the HtmlTag component when programmatically building the UI?

2006-02-02 Thread Volker Weber
Hi Matthias, i don't know anything about the Tomahawk HtmlTag component, but you can allways create a verbatim component programmatically. This is just a UIOutput with escape=false. With this you can render anything you want. Regards, Volker Matthias Kahlau wrote: > Hi! > > > Is there nobo

Re: 'Simulating' commandLink from Javascript

2006-02-02 Thread Volker Weber
Hi Laurie, Laurie Harper wrote: > > Thanks for the response, but that's not what I'm trying to do. I don't > need to locate and invoke an existing command link; I don't have a > command link to invoke. I need to achieve the same effect as clicking a > command link would give. > > In other words,

Re: Integration of jsp and jsf

2006-02-02 Thread Volker Weber
Hi Vladimir, maybe i don't understand what you want! Would you say that the following did not work on your system? -Begin JSP code-- <%@ taglib uri="http://java.sun.com/jsf/html"; prefix="h"%> <%@ taglib uri="http://java.sun.com/jsf/core"; prefix="f"%>

Re: Tobago sheet sorting

2006-02-02 Thread Volker Weber
Hi Olexandr, First: please don't use SortableByApplication, this will be removed. We are thinking about to allow applications to register a eventListener to recieve sort events and do the sorting there. Now to your problem: Currently sorting of links should work if you use a t:label tag inside th

Re: Panel Grid custom component

2006-02-03 Thread Volker Weber
Hi Ali, there are some things you made wrong: First, and this seems to be a popular error: you can't add a component to another by setting the parent of the child! use parent.getChildren().add(child) instead. Than: You dont neet to invoke encoding on every component, just create then component t

Re: AW: Panel Grid custom component

2006-02-03 Thread Volker Weber
Hi Matthias, no i don't know. according to the sun spec this is not possible for h:panelGrid: http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/tlddocs/h/panelGrid.html and i don't find any hint to such an addition in the tomahawk version at: http://myfaces.apache.org/tlddoc/tomahawk/t/panelG

Re: AW: AW: Panel Grid custom component

2006-02-03 Thread Volker Weber
quot;header"> ... element is used in more than one column. > > > > Regards, > > Matthias > > > > >>-Ursprüngliche Nachricht- >>Von: [EMAIL PROTECTED] >>[mailto:[EMAIL PROTECTED] Auftrag >>von Volker Weber >>Gesen

Re: AW: AW: AW: Panel Grid custom component

2006-02-03 Thread Volker Weber
f HtmlPanelGrid and HtmlDataTable is > the same... > > > > Regards, > > Matthias > > > >>-----Ursprüngliche Nachricht- >>Von: [EMAIL PROTECTED] >>[mailto:[EMAIL PROTECTED] Auftrag >>von Volker Weber >>Gesendet: Freitag, 3. Februar 2006

Re: Tobago sheet sorting

2006-02-03 Thread Volker Weber
Hi, i just test it in the demo examples sheet page, it works in firefox (i'm on a linux box, so i just can't test on IE), but it's produces illegal html, and looks different because of the label style. The label element is rendred (in HTML) nested in an as anchor tag ( labelText ) which results,

Re: AW: AW: AW: Panel Grid custom component

2006-02-03 Thread Volker Weber
header) Set the >>header facet of this component. A convenience method for >>getFacets().put("header", header). >> >>http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/javax/fac >>es/compone >>nt/UIData.html#setHeader(javax.faces.component.UIComp

Re: document.getElementById("jsf_tree_64") has no properties

2006-02-03 Thread Volker Weber
Hi, this may be a portlet problem? I don't know mutch about portlets, but afaik the portlet rewrites the ids to ensure they are unique. When using client-side state saving (which is the default) there are two hidden input fields "jsf_tree_64" and "jsf_state_64" in which the state is stored. Try

Re: Panel Grid custom component

2006-02-05 Thread Volker Weber
Hi Ali, UIPanel for base class should work, did you overwrite encodeChildren() or encodeEnd() to do nothing? BTW: don't expect these components between your rendered start and end comments, they are just created here, the rendering is done in encodeChildren() method of the superclass. Just for m

Re: Redisplay Problem

2006-02-05 Thread Volker Weber
Hi Francesco, > ... the AccountBean is in request-scope thats the reason for recreating this bean every request ;-). You can hold a request-scope bean over multiple requests using the t:saveState tag: See: http://myfaces.apache.org/tlddoc/tomahawk/t/saveState.html Regards, Volker Francesco

Re: AW: document.getElementById("jsf_tree_64") has no properties

2006-02-05 Thread Volker Weber
efault :-(. Regards, Volker Haihua Luo wrote: > Hi Volker, > > thank you for your reply! You are right. The hidden input field "jsf_tree_*" > cannot be found in the generated html page. But how can I switch to > server-side state saving? > > Thanks! > > Ha

Re: Error when using "spread" layout in programmatically created HtmlSelectOneRadio

2006-02-05 Thread Volker Weber
Hi Mathias, set the renderType to "org.apache.myfaces.Radio"; otherwise you won't get the tomahawk renderer. Regards, Volker Matthias Kahlau wrote: > Hi! > > > I used "spread" layout successfully with HtmlSelectOneRadio and > HtmlSelectManyCheckbox in JSP. Now I programmatically created a >

Re: Variable Resolver

2006-02-06 Thread Volker Weber
Hi Philippe, did you have public getter and setter for Person in loginBean? the expression #{loginbean.loginPerson.lastName} is resoved to "loginbean.getLoginPerson().getLastName()" where loginBean is the object from session scope. otherwise please post the stacktrace and more of your relevant

Re: Variable Resolver

2006-02-06 Thread Volker Weber
aps with the wrong terms, like >> "JSF and recursive variable resolving") but that didn't came up >> with much. :-) >> What I don't know is whether the Variabe Resolver was specified to >> also resolve in that fashion in the first place. >> What I also

Re: Variable Resolver

2006-02-06 Thread Volker Weber
just a quick question: Philippe Lamote wrote: > OK, I reconstructed it: > > in model: class Person: > > > public Person() { > new Person("",""); what's this? you mean this("", ""); otherwise you won't have your fields initialzed. > > } > /** >

Re: Variable Resolver

2006-02-06 Thread Volker Weber
This stacktrace says the class be.mnemonica.web.beans.LoginBean has no getLoginName() method. must be referenced somewhere in the jsf, but i don't see it in your posted code. Philippe Lamote wrote: > True, thx, corrected that immediately. (Oops) > However, still no change. > The stack trace I'm

Re: Custom renderer for datatable

2006-02-07 Thread Volker Weber
Hi, ::SammyRulez:: wrote: > well i'm not a css guru but I think that if you apply tableClass to > the table tbody.tableClass is automatically applied to the inner > element tbody of the table. > > something like this > http://www.w3schools.com/css/tryit.asp?filename=trycss_link2 > > the sample i

Re: Using Tobago with facelet?

2006-02-08 Thread Volker Weber
This looks like the coulums attribute of tc:gridlayout is lost, the resulting output is exact as exected if no columns is set. Arvid Hülsebus wrote: > Hello! > > Here is a short description of my findings before I go to bed: > > I started to write a Facelets taglib for some of the Tobago core ta

Re: How to render the empty rows of a dataTable

2006-02-08 Thread Volker Weber
Martin Marinschek wrote: > No-o > > don't think so. > > You'd have to write a custome table-renderer, sorry. Alternativly you can make model always adding a kind of empty rendered elements to the end of the list. > > regards, > > Martin > > On 2/8/06, Roland Asmann <[EMAIL PROTECTED]> wrot

Re: jspx commandLink not working

2006-02-08 Thread Volker Weber
Hi, i have extracted your posted html source into a file and loading it into firefox. clicking on the link results in a error, because the requested page is not available. so it seems a click sould at least generate a page reload. If not there must be something wrong on the client side. Any erro

Re: Using Tobago with facelet?

2006-02-08 Thread Volker Weber
you get from >> >>columns="fixed;*" >> >>to an int value. >> >>All I see in GridLayoutTag is >> >>ComponentUtil.setStringProperty(component, ATTR_COLUMNS, columns); >> >>Actually, here's probably the problem: >

Re: AW: Problem with evaluation of Tomahawk HtmlSelectOneRadio components inside UIData (programmatically created UI)

2006-02-09 Thread Volker Weber
Hi Matthias, just an idea, may work or not, but worth a try imho: put the HtmlSelectOneRadio component(s) somewhere out of the uidata (e.g. as child of viewRoot) and set a id, also set a id to all parent namingcontainers. in the for attribute of the HtmlRadio components use a absolute id (e.g. "

Re: integration problem with and portlet

2006-02-09 Thread Volker Weber
Hi, i think this can be solved by adding the parameters as post parameter to the options, instead of empty. I will give it a try this afternoon (german time). Regards, Volker Luo. Haihua wrote: > Hi dear all, > > > > I am using portlet and want to insert a tag into > one of my .jsp page.

Re: AW: integration problem with and portlet

2006-02-09 Thread Volker Weber
out.writeText("', {\n" + > " method: 'post',\n" + > ... > " parameters: 'affectedAjaxComponent=" + clientId + > "',\n" + > ... > > It seems that it still not work... &g

Re: AW: AW: integration problem with and portlet

2006-02-10 Thread Volker Weber
gt; > So maybe there is a new update of control.js? However, I could not find it in > svn...:( > > Kindest regards, > > Haihua > > -Ursprüngliche Nachricht- > Von: Volker Weber [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 9. Februar 2006 19:54 > An: M

Re: property vs method

2006-02-10 Thread Volker Weber
Hi, you mean you have a method "getShowPreviousBT()" and a el-expression "#{bean.showPreviousBT}" and this did not work? I can't believe, but if so please post your complete jsp and bean code, to lets take us a look on it. Regards, Volker Philippe Lamote wrote: > I tried that already, it gav

Re: AW: AW: Programmatically created UI does not contain important HTML elements

2006-02-10 Thread Volker Weber
Hi Matthias, i don't think there is such a option (but i don't know so mutch about the tomahawk extensions). I think you need to add them as verbatim (i.e UIOutput with escape="false") to your component tree. Regards, Volker Matthias Kahlau wrote: > Hi! > > Is there any configuration option

Re: AW: AW: AW: integration problem with and portlet

2006-02-10 Thread Volker Weber
- > > Then where will it be sent? How can I access the generated buffer? Really > stuck...:( > > Cheers, > > Haihua > > > > > -Ursprüngliche Nachricht- > Von: Volker Weber [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 10. Februar 2006 12:27 >

Re: Using Tobago with facelet?

2006-02-10 Thread Volker Weber
Hi Thomas, tobago has no Stylesheet tag. Did you use any non tobago tags? The debug output looks like you are using the stylesheet tag from tomahawk. It is not possible to combine tobago with other jsf tag libraries. Tobago has also a style tag, try this one. Regards, Volker Thomas Gaudin w

Re: Write plain html when encoding in JSF

2006-02-12 Thread Volker Weber
Hi, Mark Qian wrote: > I tried to create a JSF tag component containing two or more HTML > tables but by default > writer.endElement and writer.startElement seems to deal with a single > HTML > component only. > > How do people output their HTML in case that they want to write > something like >

Re: Component advice

2006-02-12 Thread Volker Weber
>>be rendered as children of the parent (InputBban). Is this a good or >>>bad thing to be doing? >>> >>>The other issue i could do with some help on is a tidy way to approach >>>the rendering of different output and different validations for >>>differ

Re: AW: AW: Problem with evaluation of Tomahawk HtmlSelectOneRadio components inside UIData (programmatically created UI)

2006-02-12 Thread Volker Weber
Hi Matthias, i created a small test page (see attached files), but i can't reproduce your problem. All works as expected, also when validation fails. Please provide more info about what you are doing and your tree structure. Regards, Volker Matthias Kahlau wrote: >>There's a use case where I

Re: AW: AW: AW: Problem with evaluation of Tomahawk HtmlSelectOneRadio components inside UIData (programmatically created UI)

2006-02-12 Thread Volker Weber
d in > the view. > > All works fine, except when a validation error had occured, so please try > with a standard validation error. > > > Regards, > > Matthias > > >>-----Ursprüngliche Nachricht- >>Von: [EMAIL PROTECTED] >>[mailto:[EMAIL PROTE

Re: AW: AW: AW: Problem with evaluation of Tomahawk HtmlSelectOneRadio components inside UIData (programmatically created UI)

2006-02-12 Thread Volker Weber
Volker Weber wrote: > Hi, > > Matthias Kahlau wrote: > >>Hi Volker! >> >>Thanks for your support. I'm not sure, but maybe you should try throwing a >>javax.faces.validator.ValidatorException in your validation method when your >>validation fai

Re: AW: AW: AW: AW: integration problem with and portlet

2006-02-13 Thread Volker Weber
estParameter "affectedAjaxComponent". you can set log level to debug to see if the listener is invoked. Regards, Volker > > So is that the problem when generating response text with MyFaces? Or portlet? > > Regards, > > Haihua > > -----Ursprüngliche Nachricht- > Von: V

Re: AW: AW: AW: AW: AW: integration problem with and portlet

2006-02-13 Thread Volker Weber
tandardContext[/pluto]ServiceManager: Services > initialized (6/6 success > ful). > 11:32:42,648 WARN [LocaleUtils] Locale name in faces-config.xml null or > empty, setting locale to de > fault locale : zh_CN > > 11:34:20,101 INFO [STDOUT] suggest processQname: AMHotfolderDe

Re: selectOneRadio inner components

2006-02-13 Thread Volker Weber
Hi, maybe you can use layout="spread" and t:radio see: http://wiki.apache.org/myfaces/Radio Regards, Volker Uri Kalish wrote: > Hi, > Motivation: > I use selectOneRadio and try to 'associate' components to radio buttons so > they can be enabled/disabled through the radio check/uncheck (attach

Re: Scrollable ResultSet being passed to Tobago Sheet - errors as 'Forward Only'

2006-02-13 Thread Volker Weber
Hi, tobago did not access the resultSet directly, so the problem must be somewhere deeper. Did you use myfaces or RI impl? Can you check it the ResultSet works with plain jsf h:dataTable tag? Please post the stackTrace. Regards, Volker John wrote: > Using HSQLdb > Verified with HsqlDb team tha

Re: Message/Validation Component is a dataTable

2006-02-15 Thread Volker Weber
Hi Elam, during validation a call to component.getClientId(facesContext) returns the correct id, including the row number, which can used to add the ErrorMessage to the facescontext. The UIData initialized all components properly before invoking lifecycle methods on them. Regards, Volker Elam

Re: Rendered markup of HtmlSelectManyCheckbox / HtmlSelectOneRadio incomplete?

2006-02-16 Thread Volker Weber
Hi Matthias, Matthias Kahlau wrote: > Hi! > > > My HtmlSelectManyCheckbox with "spread" layout and a styleClass set is > rendered as follows: > > > > value="1" class="surveyInput" /> die zweite (Text)  > value="2" class="surveyInput" /> die dritte (datum)  > > > > This does not comply t

Re: display label in error message instead of id

2006-02-16 Thread Volker Weber
see: http://myfaces.apache.org/tomahawk/tlddoc/t/message.html regards, Volker Dave wrote: > Where to find doc for (t:message)? I looked at Apache Faces, but I could > not find it. > Thanks! > > */Bruno Aranda <[EMAIL PROTECTED]>/* wrote: > > Sure, there is an easy solution. Use the extend

Re: and validation & saving

2006-02-20 Thread Volker Weber
Hi Philippe, you have jsf tags inside of f:verbatim? AFAIK this will not work, you should close the verbatim before the jsf tags, and reopen after. Regards, Volker Philippe Lamote wrote: > Hi List, > > Another problem I've run into today: > > -- I have in my page a div like this: (inside a

Re: and validation & saving

2006-02-20 Thread Volker Weber
> to purely JSF code as the mix of both obviously entails some annoying > side effects? > ( & thx for the advice already) > Philippe > > On 20 Feb 2006, at 23:16, Volker Weber wrote: > > Hi Philippe, > > you have jsf tags inside of f:verbatim? AFAIK this will not w

Re: and validation & saving

2006-02-21 Thread Volker Weber
Lamote wrote: > OK, I'll try that tomorrow. (Yet, at first glance, I'm afraid my XHTML > parser will not accept that solution - as the tags are not anymore > "properly nested" this way, eg. mix of verbatim & td tags) > I'll let you know. > Philippe &g

Re: t:selectOneRadio has no preselection with spread layout

2006-02-21 Thread Volker Weber
Hi, must be something special with your setup, it always worked for me. But this did not mean there is no bug anywhere :-). What kind of bean is the 'datafield' property of document object? The value objects of f:selectItem are String, if you use boolean in datafield, there is no match when che

Re: Response to Volker - RE: Scrollable ResultSet being passed to Tobago Sheet - errors as 'Forward Only'

2006-02-21 Thread Volker Weber
her.java:463) > at > org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDisp > atcher.java:398) > at > org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispat > cher.java:301) > at > org.apache.myfaces.context.servlet.Ser

Re: t:selectOneRadio has no preselection with spread layout

2006-02-21 Thread Volker Weber
ning Objects as values. > The requested field 'draft' is of type Boolean. > > This works well when I use only the f:selectItem tags without > layout="spread" and the two t:radio tags. > > Unfortunately I have to use "spread" for layout issues. > >

Re: t:selectOneRadio has no preselection with spread layout

2006-02-21 Thread Volker Weber
Patch already attached :-). Sean Schofield wrote: > Volker created TOMAHAWK-152 [1]. Patches are welcome. > > Sean > > [1] http://issues.apache.org/jira/browse/TOMAHAWK-152 > > > On 2/21/06, Volker Weber <[EMAIL PROTECTED]> wrote: > >>Hi Michael, >

Re: t:selectOneRadio has no preselection with spread layout

2006-02-21 Thread Volker Weber
you are committer now aren't you? Or are you restricted by the > "gentlemen's agreement?" > > Sean > > On 2/21/06, Volker Weber <[EMAIL PROTECTED]> wrote: > >>Patch already attached :-). >> >>Sean Schofield wrote: >> >>&

Re: aboutall tobago jar's file

2006-02-22 Thread Volker Weber
Hi Thomas, from http://tobago.atanion.net/tobago-example-demo.war you can download the war depoyed at http://tobago.atanion.net/tobago-example-demo/ there are all needed jars included. This is a bit outdated (from 30.12.05), i think we should trigger an update. Regards, Volker LEDOUX Thomas

Re: Access Alias Value from JSP Code

2006-02-22 Thread Volker Weber
Hi Sebastien, the alias bean is provided only during encoding of jsf components, this means that, if your t:aliasBean is inside a component which rendersChildren=true, any layouting panel component e.g., the bean is not accessible from jsp code. Regards, Volker Sebastien Boutte wrote: > Hi all

Re: Where is the API-Doc???

2006-02-22 Thread Volker Weber
Hi, http://myfaces.apache.org/javadoc.html Regards, Volker Hendrik Neumann wrote: > Hi everybody, > > I can not find the MyFaces-API-Documentation anymore... where is it? > http://myfaces.apache.org/javadoc/ just gives me an ugly 404-error. > > -- > Mit freundlichen Grüßen / Greetings, > H

Re: problem with tobago compilation

2006-02-22 Thread Volker Weber
Hi Thomas, which timezone / locale did you have? I remember an issue with one of this, but i thought this was fixed. Can you post the test results (from tobago-theme/tobago-theme-scarborough/target/surefire-reports/)? You can instruct maven to ignore the failures with '-Dmaven.test.failure.ignor

Re: simple identification of incorrect fields

2006-02-22 Thread Volker Weber
Michael, i would prefer Andrews solution, but if you don't want to create a custom renderer there is another way to archive what you want. Take a outputText component and check in the rendered attribute method if there is a relevant message in the context. But going the custom renderer approach

Re: simple identification of incorrect fields

2006-02-22 Thread Volker Weber
Hi Michael, Michael Heinen wrote: > Ok, thanks for the hint. > Then I'll try this also with a custom renderer. > > Would it not be a nice extension to allow nested content in the message > tag, that will be only rendered if there is an existing message for a > field? > > E.g. > showSummary="fa

Re: simple identification of incorrect fields

2006-02-22 Thread Volker Weber
is a message for a field? > I get a PropertyNotFoundException with following lines: > > > required="true"/> > > > FacesContext.getMessages(String clientId) returns an Iterator. > But how to pass clientId? > Isn't clienId an identifier of the com

Re: tobato t:sheet sorting

2006-02-23 Thread Volker Weber
Hi Iryna, Iryna Stetska wrote: > We are using t:sheet component. > We need to implement sortable column in it which would perform sorting > by clicking on the column header, while sorting will be performed on > the server side. (We don't want to use standard tobago sheet sorting > for substantial

Re: tobato t:sheet sorting

2006-02-24 Thread Volker Weber
Hi again, now it is possible to declare a actionListener to let the application sort. I just checked it in. Regards, Volker Volker Weber wrote: > Hi Iryna, > > Iryna Stetska wrote: > >>We are using t:sheet component. >>We need to implement sortable column in it whi

Re: tobato t:sheet sorting

2006-02-25 Thread Volker Weber
. An example is in the tobago-example-demo app. Regards, Volker Emily Gu wrote: > Hi Volker, > > Thanks for your help. Where can I get your newly checked in changes? Any > example in how to use it? > > Thanks, > Emily > > > On 2/24/06, Volker Weber <[EMAIL

Re: tobato t:sheet sorting

2006-02-25 Thread Volker Weber
Hi, quoting form dev list: Volker Weber wrote: > Hi Bernd, > > the sheet was already using a actionListener methodBinding to do the > sort. The (mainly) only thing i did was to enable defining the > methodBinding to use in the sheetTag. > > Hmmm, when i started to write th

Re: Annoying INFO Message: Unable to find component

2006-02-27 Thread Volker Weber
Hi Mike, Mike Duffy wrote: > I am seeing an annoying INFO message for every JSP that contains a JSF > component: > > INFO [RendererUtils] Unable to find component 'projectTypeValue' (calling > findComponent on > component 'selectProjectTypeIssueType:_idJsp74'). We'll try to return a > guessed

Re: Tobago t:hidden

2006-02-27 Thread Volker Weber
Hi Nazar, seems someone misses to configure this after the last restructure for the faclet support. There are no usages in the demos, so it got lost :-(. I have fixed this, please update your svn checkout. Regards, Volker Nazar Stasiv wrote: > Hi, > I wonder what have happened to t:hidden*

Re: Tobago t:toolBarCommand

2006-03-02 Thread Volker Weber
Hi Iryna, Iryna Stetska wrote: > Hello, > > I have 2 questions on Tobago toolBarCommand component. > > 1. How can I implement functionality on both executing script and > executing action of the backing bean while pressing the toolbar > button? > This mean that if I press the toolbar button some

Re: Facets Renderer!

2006-03-03 Thread Volker Weber
Hi Amit, Amit Jain wrote: > Hi, > > I have a class which extends UIcolumn. I am adding header facet to it in > encodebegin method but the facets are not getting rendered. I am getting > simple UIcolumn. > Can someone suggest some other way to do it. you can't do this in encode methods of UI

Re: Facets Renderer!

2006-03-03 Thread Volker Weber
Than you can do it in doEndTag() of your tag class Amit Jain wrote: > Thanks for the reply. > > I cant assign header in constructor as I am adding my default header only if > user have not given header facet in jsp. > > Amit > - Original Message ----- > From

Re: normal Link

2006-03-07 Thread Volker Weber
Hi Hans, see http://java.sun.com/javaee/javaserverfaces/1.2/docs/tlddocs/h/outputLink.html Regards, Volker Hans Sowa wrote: > Hi > > I want to add a normal link like http:// to my jsf site. This link > should go to a non-jsf site. The link should be open in a new browser > independent

Re: SOLVED - Tobago sheet using jdbc ResultSet example request

2006-03-08 Thread Volker Weber
Hi John, layout 'fixed' means, on most non panel components, a, theme dependend, fix defined pixel size. but not all components has this already defined. seems like sheet havend, but what height/width should be default for sheet? BTW if your box only contains a single component (the sheet in this

Re: Tomahawk t:radio-component problem?

2006-03-10 Thread Volker Weber
Hi Isto, not fully shure what your problem is, but mybe using absolute ids will help, see this tread: http://www.mail-archive.com/users@myfaces.apache.org/msg16561.html Regards, Volker Isto Pajarinen wrote: > Hi > > When using selectOneRadio -component inside dataTable -component, so that >

Re: Tomahawk t:radio-component problem?

2006-03-10 Thread Volker Weber
actually can't in this situation place the selectOneRadio-component out > side the UIData (gives exception that doesn't find the referd component) > or directly under the view (like described in the tread). > > t.Isto > > > > > > > > Volker We

Re: Tomahawk t:radio-component problem?

2006-03-10 Thread Volker Weber
immediate > = "false" > > > value="#{formAction.codelisting}" /> > > > > >

Re: Tobago simple example

2006-03-10 Thread Volker Weber
Hi Nazar, i just created TOBAGO-43, and will commit a hotfix soon. Regards, Volker -- Don't answer to From: address! Mail to this account are droped if not recieved via mailinglist. To contact me direct create the mail address by concatenating my forename to my senders domain.

Re: Tobago simple example

2006-03-10 Thread Volker Weber
hotfix commited, please update your sources. The hotfix just catches the exception and rerenders the view. Regards, Volker Volker Weber wrote: > Hi Nazar, > > i just created TOBAGO-43, and will commit a hotfix soon. > > > Regards, > Volker > -- Don't ans

Re: First Contact and the first Problem - please help

2006-03-16 Thread Volker Weber
Hi Ingo, can you please post the relevant jsf and bean code? Regards, Volker Ingo Ott wrote: > Hi @all, > > > > i have a major problem using the jsf component with > . I get the following error message: > > > > javax.servlet.ServletException: Collection referenced by UISelectItems wi

Re: How to configure logging

2006-03-17 Thread Volker Weber
Hi Jim, a example how to configure log4j can found in tobagos example applications e.g. here: http://tinyurl.com/psuen full doku is here: http://logging.apache.org/log4j/docs/documentation.html Regards, Volker Jim Graf wrote: > Hi, > > I need to trace my webapp (a combination of myfaces and

Re: AW: How to configure logging

2006-03-17 Thread Volker Weber
Hi, Krause, Nico wrote: > Hi Jim, > > I was trying to configure log4j for my application too. > At the end of the day i used commons logging because i got it working. It is > currently logging now into the main logfile of jboss. > > I had some troubles of getting log4j workin within jboss. > L

Re: Tobago sheet column occupies space beyound header boundaries

2006-03-20 Thread Volker Weber
Hi Nazar, AFAIK this was fixed in the last one or two weeks. We saw this also in a app we are developping, but only in IE. Currendly i can't reproduce this behavior. If you still have this problem with svn head please repost and include some info about your environment. Regards, Volker Nazar

Re: No variables in t:column header facets! Bug?

2006-03-20 Thread Volker Weber
Hi, you can't access the dataTables 'var' object in headers or footers! octoberdan wrote: > The header will be blank if I do the following > [code] > value="#{projectBacker.projects}"> > >value="#{project.status}"/> > > > ... > [/code] > > Is there a

<    3   4   5   6   7   8   9   >