Re: Something like forceId for regular components?

2006-01-06 Thread Volker Weber
Hi Travis, i haven't read the thread sean mentioned [1], so just the problems which comes direct into my mind: Components inside of dataTable can't have a forceId ore you get illegal html. Page sniplets to generate repeated used subpages included via @include into subviews also can't have forceId

Re: Something like forceId for regular components?

2006-01-07 Thread Volker Weber
Volker Weber wrote: > > I think i should read this tread. > > [1] http://www.mail-archive.com/users@myfaces.apache.org/msg00680.html > After reading this, i think there is only one new aspect for me. The problem with porting existing applications to jsf. If those existing a

Re: AW: Bug in InputSuggestAjax (ValueChangeEvent doesn't work)

2006-01-09 Thread Volker Weber
b? > > Regards, > Andy > > -- ----- Volker WeberDietrichsweg 38a 26127 Oldenburg Germany MAILTO:[EMAIL PROTECTED] HTTP://www.weber-oldenburg.de -- Don't answer to From: address! Mail to this account are droped if not recieved via mailin

Re: AW: Can panelTabbedPane remember the last selected index?

2006-01-10 Thread Volker Weber
Hi Matthias, Matthias Kahlau wrote: > Do you know the general advantages of server-side tab-switching? one of the atvantages of server side tab-switching: all other components are also rerendred. e.g. you can have a toolbar above your tab panel and enable/disable the buttons depending of the cont

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

2006-01-11 Thread Volker Weber
Hi Jeffrey, you are in the situation to serve a Non-Faces Request to a Faces Response as described in the jsf 1.1 spec in section 2.1.1. Take a look at tobagos NonFacesRequestServlet [1] how this situation could handled. I don't know if there is somthing like this in tomahawk, could be a candida

Re: Tobago Sheet pagingLength==1 bug

2006-01-14 Thread Volker Weber
Hi Olexandr, Olexandr Zakordonskyy wrote: > Hi guys, > > When I setting pagingLength to 1 pager works abnormal. > I see |<< Page 3 of 6 >>| and link to previous is disabled. > When I set length > 1 all works fine. > thanks for reporting this, its fixed in svn now. Seems you are one of our mos

Re: dataList question

2006-01-15 Thread Volker Weber
Hi, Please post your code! The relevant jsp, including the datatable definition, and the action code. Otherwise noone can guess what is wrong and/or how to solve. Regards, Volker Marco wrote: > I did checked everything but nothing worked. -- Don't answer to From: address! Mail to this acco

Re: Restore-view phase question

2006-01-15 Thread Volker Weber
Hi Richard, Richard Wallace wrote: > Hello all, > > I have a question regarding the restore-view phase. What I want to do > is create a phase listener to try and process get parameters. The idea > is that I'd have a phase listener which registers for the after > restore-view event. So, my ques

Re: myFaces - servlet redirect.

2006-01-17 Thread Volker Weber
Hi, i didn't implement this, i just have mentioned we have this in tobago :-). @Jeff: i don't understand yout last post on [EMAIL PROTECTED] you have a mapping of "/view/" for the servlet ant the url http://localhost:8080/ebusiness/faces/view/task?id=1 i wonder why "/view/task" is mapped to th

Re: myFaces - servlet redirect.

2006-01-17 Thread Volker Weber
in a separate zip file in the route of the ear. > > I'm hoping that someone else can also see my problem. > Thanks > Jeff > > p.s. I've read the wiki page and have followed it. > Part of me is hoping that this all turns out to me some stupid mistake on my > part

Re: myFaces - servlet redirect.

2006-01-17 Thread Volker Weber
you mean you changed... > > > NonFacesRequestServlet > /NonFacesRequestServlet > > > to > > > NonFacesRequestServlet > /faces > > > > And then just used the URL... > http://localhost:8080/servredirect/faces/NonFacesRequestServlet?id=1 >

Re: myFaces - servlet redirect.

2006-01-17 Thread Volker Weber
No ! "/faces/*" is the mapping for FacesServlet "/faces" is the mapping for NonFacesRequestServlet I don't like it, but this works with Jeff's example app. Regards Volker Matthias Wessendorf wrote: >> /faces > > > /faces/* > > just like discussed here: > http://www.mail-archive.com/

Re: myFaces - servlet redirect.

2006-01-18 Thread Volker Weber
s/asf/incubator/tobago/trunk/tobago-example/tobago-example-nonfacesrequest/ > > > web.xml snip: > >/FishServlet > >/faces/FishServlet > > > Matthias Wessendorf schrieb: > >> On 1/17/06, Volker Weber <[EMAIL PROTECTED]> wrote: >

Re: page refresh question

2006-01-18 Thread Volker Weber
Hi, this is currently not possilbe with pure myfaces/jsf AFAIK. But it should be possible with ajaxanywhere: http://ajaxanywhere.sourceforge.net/ see also jsf demo at: http://ajaxanywhere.sweetdev-labs.org:8080/ajaxAnywhereDemo-1.0.1/facesFrame.jsp Regards, Volker Yixing Ma wrote: > I have

Re: Dynamically refer to a component from another component

2006-01-19 Thread Volker Weber
Hi, Enrique Medina wrote: > But I don't want to inject another bean. When I talk about components I > mean view components in the model component; e.g. refer to an > HtmlInputText from another HtmlOutputText. > > The problem I have is that I need to refer to the value of one component > from anot

Re: Dynamically refer to a component from another component

2006-01-19 Thread Volker Weber
input text box that is needed. If I set the Id with: > > texto4.setId("_input"); > > Then this ID will be used as the last part of the HTML generated ID > when rendering the page, so there is no way to know it when writing > this code in the

Re: HtmlRendererUtils.selectContentType

2006-01-19 Thread Volker Weber
Hi Mario, the only case i remember where the FacesContext is null was rendering the errorpage after another error occurs. I don't think this is the case in your situation, you wrote you see this in the logs only, if i remember correct. But maybe it gives you a hint. Regards, Volker Mario Iva

Re: Welcome!

2006-01-19 Thread Volker Weber
Hi all, first: Thanks for the warm welcome :-). And then: Please could someone point me to the contributors list, seems i can't find it myself. And yes, we already should had karma, because we are tobago committers. Best regards, Volker Matthias Wessendorf wrote: > Karma seams to be grant

Re: Welcome!

2006-01-19 Thread Volker Weber
Martin Marinschek wrote: > contributers-list? > > oh, you mean the private PMC list? > > there's nothing like that for committers, only for PMC members. > Development discussions all happen on the dev-list. > > regards, No, i mean the list where we sould add ourself, as Manfred mentioned. >

Re: Dynamically refer to a component from another component

2006-01-19 Thread Volker Weber
, Volker Enrique Medina wrote: > I tried that, but at the time of creating the component in code, > texto4.getClientId(facesContext) returns exactly the same used before > when texto4.setId("_input"), so it doesn't help at all > > 2006/1/19, Volker Weber <[

Re: Setting default value for

2006-01-19 Thread Volker Weber
Hi Johnny, in short: You *can't* do that! For security reasons no modern browser allows to preselect the value of a fileUpload controll. Regards, Volker Johnny Gonzalez wrote: > Hello everybody, > > I have an application which has the possibility to > upload a file, everything works fine, bu

Re: Dynamically refer to a component from another component

2006-01-20 Thread Volker Weber
+0100, Enrique Medina wrote: > > See what is generated at runtime: > > > > id="bodySubview:_id23:tablaEdicionPuntuaciones0_1:_id24_4_0:_input" > > > name="bodySubview:_id23:tablaEdicionPuntuaciones0_1:_id24_4_0:_input" >

Re: Dynamically refer to a component from another component

2006-01-20 Thread Volker Weber
BTW: if i remember correct the generated row index is changed to ':0' in svn. Volker Weber wrote: > Hi Enrique, > > the '_0' is added by the datatable while rendering row 1 (index 0). > This is needed to generate uniqe ids over multiple rows. > > Looks li

Re: Problem building Maven XSLT plugin

2006-01-20 Thread Volker Weber
Hi Peter, if you updating your checkout you should have a pluginRepository section in maven/master-pom/pom.xml pointing to the atanion repository. 'mvn install' should do the rest. regards, Volker Peter Henderson wrote: > Bernd Bohmann wrote: > >> Please remove the plugin from your reposito

Re: is not working in

2006-01-22 Thread Volker Weber
Hi, Emily Gu wrote: > Hi, > > I have a data table that each row has a column that I have used > . My data table is sortingtable and scrollable. > Whenever I click table header to sort on other columns, or scroll to > next page. The date value in each row got decreased one day. Please help. >

Re: inputSuggestAjax and Rico Problem

2006-01-23 Thread Volker Weber
Hi Emmanuel, the fix for MYFACES-871 updates prototype to 1.4.0. So i guess a update will fix your problem. Unfortunately it seems that currently no sandbox nightlys are available :-(. You need to wait until they are back or build them yourself. Anyway, i'm not sure if it is save to include th

Re: nighly build of example sandbox webapp

2006-01-23 Thread Volker Weber
you can do a checkout via http: svn co http://svn.apache.org/repos/asf/myfaces/current myfaces Regards, Volker Rogerio Pereira wrote: > Dennis, i'm behind proxy here and i don't have permission to use svn port. > > 2006/1/23, Dennis Byrne <[EMAIL PROTECTED] >: > >

Re: inputSuggestAjax and Rico Problem

2006-01-23 Thread Volker Weber
Hi, accordeonpanel uses prototype version 1.4.0_pre11 from its own resource, inputSuggestAjax uses prototype version 1.4.0 from tomahawk prototype recource. I don't know exactly how addRecource works, but i guess they will get included both, with potentially conflicts. Has anyone tested them on

Re: inputSuggestAjax and Rico Problem

2006-01-24 Thread Volker Weber
Hi Werner, i had looked into myfaces accordeon panel, there is an other prototype version used than in inputSuggestAjax! My question was how AddResource would handle this? Regards. Volker Werner Punz wrote: > Volker Weber schrieb: > >> Hi, >> >> accordeonpane

Re: inputSuggestAjax and Rico Problem

2006-01-24 Thread Volker Weber
Hi, check your script tag in html, the last time i had this error (Ajax is undefined) i had a wrong script tag. This is wrong: It must be: Check all script tags before the prototype.js, because the first of this one is loaded, and any further scripts are ignored. Regards, Volker Emman

Re: Managed beans not being instantiated

2006-01-25 Thread Volker Weber
Hi John, there are some problems in your example code: 1. your bean has no setter for property hithere! public void setHithere() {...} is no valid setter. You need a arg (of type String in this case). 2. I think your managed-property declaration can't be right. You have a declared property

Re: Managed beans not being instantiated

2006-01-25 Thread Volker Weber
d bean declaration in facesContect.xml. Regards, Volker > > John > > > > -Original Message- > From: Volker Weber [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 25, 2006 4:14 AM > To: MyFaces Discussion > Subject: Re: Managed beans not being instan

Re: Receiving duplicate suggestions in InputSuggestAjax component

2006-01-27 Thread Volker Weber
Hi Michel, during investigating another problem with inputSuggestAjax involved i found the same behavior in sandbox example. The problem is the dublicated registration of the AjaxPhaseListener. It is registred in the examples WEB-INF/faces.config.xml, but is already in faces-config.xml of sandbox

Re: InputSuggestAjax works if I deploy Sandbox Sample; but not from my JSF App

2006-01-28 Thread Volker Weber
Hi, this looks like the extensionsFilter mapping is not fully correct. Make sure you have a mapping "/faces/*" to extensionsFilter. Hope this helps, if not please post your web.xml. Umesh Kanitkar wrote: >Hello: >Javascript files get included in the resultng html page. However I get >the error

Re: InputSuggestAjax works if I deploy Sandbox Sample; but not from my JSF App

2006-01-28 Thread Volker Weber
Hi, a litle correction: Volker Weber wrote: > Hi, > > this looks like the extensionsFilter mapping is not fully correct. > > Make sure you have a mapping "/faces/*" to extensionsFilter. should be : "/faces/myFacesExtensionResource/*" see:

Re: Problems with unsubscribing this mailing liat

2007-12-20 Thread Volker Weber
Hi Carsten, afaik you must unsubscribe with the same sender address as used by the subscription. And the sender address is not necessarily the same as the from. Some providers rewrites the sender if it not match the used smtp account. Regards, Volker 2007/12/20, [EMAIL PROTECTED] <[EMAIL

Re: Problems with unsubscribing this mailing liat

2007-12-20 Thread Volker Weber
sellschaft / Corporate Headquarters: > Lufthansa Systems AS GmbH, Norderstedt > Registereintragung / Registration: > Amtsgericht Norderstedt 3688NO > > Geschaeftsfuehrung/ Management: > Bernd Appel > -----Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On B

Re:

2008-01-03 Thread Volker Weber
afaik disabled html components are send to the server by the browser (readonly are not), but not processed by jsf. If you need them you can read them yourself from the request parameters. 2008/1/3, jimmyau <[EMAIL PROTECTED]>: > It is because i need the field submit back to the server without havi

Re:

2008-01-03 Thread Volker Weber
e to look up such values within the RequestParameterMap - you get > the map via: > FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap() > > additional information: trinidad doesn't behave the same way! > > regards, > gerhard > > > &

Re: [Tobago] table scroller

2008-01-07 Thread Volker Weber
Hi Zied, In general this should be done automatic. what is the colums attribute of the sheet ? I would expect something like "20px;1*;1*", if so the sheet should calculate the "1*" to a size which let the space for the scrollbar free, if too much rows to render. This works only when the needed h

Re: [Tobago ] renderedPartially in a popup

2008-01-07 Thread Volker Weber
Hi Yazid, renderedPartally should work fine in a popup, maybe your partiallyId is wrong. Can you give a page example? Regards, Volker 2008/1/5, yazid <[EMAIL PROTECTED]>: > > Hi, > Can anyone tell me please how to make the "renderedPartially" attribute work > inside a popop. > It work fine

Re: Call a backing bean before show a JSP

2008-01-08 Thread Volker Weber
Hi Daniel, its simple, you need to render a faces response for a non faces request: use the NonFacesRequestServlet : http://wiki.apache.org/myfaces/InvokingJsfPagesWithStandardUrls#head-6c1aaf488d48f938896da962aaa4361ec3ffaf70 this Servlet implements the needed steps (jsf-1.1-spec 2.1.1). Rega

Re: How to use one subview more than once in one page

2008-01-08 Thread Volker Weber
Hi, we are using a similar code in our project in the subview.jsp: The tomahawk aliasBean stuff did not work in tobago if you use partiall reload or any component binding inside the subview. The tomahawk aliasBean stuff also can't work with the sun RI when using binding. Maybe we c

Re: [Tobago] table scroller

2008-01-08 Thread Volker Weber
els of precision: It was "18px;*;*" ;-) > > Regards, > Zied > > > 2008/1/7, Volker Weber <[EMAIL PROTECTED]>: > > > Hi Zied, > > > > In general this should be done automatic. > > > > what is the colums attribute of the sheet ? > >

Re: How to use one subview more than once in one page

2008-01-08 Thread Volker Weber
: > > <% > String beanName = request.getParameter("beanName"); > request.setAttribute("beanName", beanName); > %> > > This works fine when I navigate for the first time to the page. But when I > navigate to another page and back >

Re: [tobago] renderedPartially sends the request two times

2008-01-10 Thread Volker Weber
Hi Zied, if a ajax request times out nothing (except maybe a error message) happens. If a ajax request receives a non ajax response, which can happen after a session timeout, or a exception on the server, than a full reload is done via a "traditional" request. Also a "traditional" request is do

Re: [tobago] renderedPartially sends the request two times

2008-01-10 Thread Volker Weber
Hi, > "page::form-action" = "page" this happens in both cases, unknown response and reload requested by server, but not on ajax timeout. Regards, Volker 2008/1/10, Zied Hamdi <[EMAIL PROTECTED]>: > Hi again, > > I forgot to say a noticable difference between requests is : > "page::form-act

Re: [Tobago] sortActionListener not called for dynamic columns

2008-01-17 Thread Volker Weber
Hi Adam, at the first quick look: you are removing the dynamic columns in the setDocumentBinding(). This method is invoked on every view restore, after this there are no colums to invoke the actionListener on. Regards, Volker 2008/1/17, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > Hi, > > i'm

Re: [Tomahawk] how to save input-values when pressed a button with immediate tag set?

2008-01-28 Thread Volker Weber
Hi Georg, 2008/1/28, Georg Füchsle <[EMAIL PROTECTED]>: > Is there a way to save these values? Can I do this by hand while processing > action of my button? you can get the values from the requestParamaters: Map params = facesContext.getExternalContext().getRequestParameterMap(); String value

Re: [tobago] doesn't support "change" facelet?

2008-01-30 Thread Volker Weber
Hi Zied, in general tc:in supports the change facet. Which tobago version 1.0.x or 1.1-SNAP? I think this is a problem of mixing inputSuggest with change facet, i never tried this, but i observed problems with adding additional eventlisteners when moving inputsuggest to dojo. Regards, Volke

Re: [tobago] when renderedPartially, menuCheckbox's value is not updated

2008-02-08 Thread Volker Weber
Hi Zied, in IE? if this problem does not exsist in FF this may be http://issues.apache.org/jira/browse/TOBAGO-611 Regards, Volker 2008/2/8, Zied Hamdi <[EMAIL PROTECTED]>: > Hi, > > I have a problem when I attemp to render partially a box with a checkbox > menu popup: in (tradition mode) t

Re: [Tobago] Problem migrating to 1.0.15

2008-02-15 Thread Volker Weber
Hi, no time to test this, but my guess from yazids las post is: he had put a tc:out and a tc:selectOneChoice in the same column. the tc:selectOneChoice was rendered but outside the columns visual area and therefore clipped away. surrounding the tc:out and tc:selectOneChoice with a tc:cell (or pa

Re: [Tobago] Edit an XML text

2008-02-18 Thread Volker Weber
Hi yazid, do you want to edit or display the xml? using tc:textarea is the simplest, i think. For display set the readonly attribute to true. Regards, Volker 2008/2/18, yazid <[EMAIL PROTECTED]>: > > Hi all; > Is there a way to display a bloc of text (20 line) of XML by tobago r > Any idea

Re: [Tobago] Scrollable text insice tc:sheet

2008-02-19 Thread Volker Weber
Hi Yazid, are you are inside a sheet? if not: tc:out inside tc:cell with scrollbars=auto should do this. if yes: the same, plus forcing the tc:cell to get enough height to render at least the scrollbars. Regards, Volker 2008/2/19, yazid <[EMAIL PROTECTED]>: > > Hello ; > I've the same pr

Re: [tobago] :Issue with ValueChangeEvent & Validator

2008-02-21 Thread Volker Weber
Hi Raj, if i interpret your code snippet correct, the selectOneListbox with the click/change facet is NOT inside the partially rendered panel. This is the problem, only the content of the partiallyRendered component is processed on the server. you have two(tree) choices: 1. include the listbox i

Re: [tobago] :Issue with ValueChangeEvent & Validator

2008-02-21 Thread Volker Weber
> > > > > name="renderedPartially" /> > > > <%-- I tired the same command with 'change' facet' also %> > > >

Re: [tobago] :Issue with ValueChangeEvent & Validator

2008-02-21 Thread Volker Weber
Which version of tobago? I'm trying to reproduce this. 2008/2/21, Raj .G. Narasimhan <[EMAIL PROTECTED]>: > Yes, I didVolker... But, there is none... > > thanks, > -R > > > On Thu, Feb 21, 2008 at 9:59 AM, Volker Weber <[EMAIL PROTECTED]> wrote: > >

Re: [tobago] :Issue with ValueChangeEvent & Validator

2008-02-25 Thread Volker Weber
dapter.java:286) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) > at > org.apache.tomcat.util.net.JIoEndpoint$

Re: [tobago] writing a pdf to response OutputStream

2008-03-06 Thread Volker Weber
Hi Zied, have you looked at the wiki? http://wiki.apache.org/myfaces/Sending_Files the important thing is: FacesContext.getCurrentInstance().responseComplete(); Regards, Volker 2008/3/6, Zied Hamdi <[EMAIL PROTECTED]>: > Hi, > > I wrote my code based on the example app. > > >

Re: general question: assigning/copying variables in view?

2008-03-09 Thread Volker Weber
Hi Łukasz, you may look at the tomahawk aliasBean component: http://myfaces.apache.org/tomahawk/aliasBean.html Regards, Volker 2008/3/9, Łukasz Budnik <[EMAIL PROTECTED]>: > Hi All! > > I have a problem with redundancy in my web application and I am > looking for a solution > to this p

Re: [Tobago] How to substitute into the Tobago resource bundle messages?

2008-03-11 Thread Volker Weber
Hi Tim, tobago resourceBundle did not support argument formating. in your case you can concatenate the two values into a single valueBinding: Regards, Volker 2008/3/10, Tim Stephenson <[EMAIL PROTECTED]>: > Hi, > > I have loaded a resource bundle using > > and can output message

Re: [Tobago] How to substitute into the Tobago resource bundle messages?

2008-03-11 Thread Volker Weber
t;#{bundle.editUser}#{empty controller.user ? '' : ' ( '}#{empty controller.user ? '' : controller.user.name}#{empty controller.user ? '' : ' ) '}" But i like the idea of formating such values/labels with MessageFormat and params.

Re: [MyFaces] multiple components binding to same backing bean property

2008-03-25 Thread Volker Weber
Hi, could you explain the reason for having the same binding at two components? As Andrew wrote you can't have the same component instance twice in one page, so your bindings getters MUST return null or a new instance for every call. To my experience you should avoid to use binding. Regards,

Re: JSF Lifecycle Question

2008-03-26 Thread Volker Weber
Hi, see inline 2008/3/25, simon <[EMAIL PROTECTED]>: > Hmm.interesting. > > In this case, I think your radio-button has absolutely no effect on your > program (although that still doesn't explain why the textbox is empty). > > I believe the process is like this: > > on postback: > (restore vi

Re: [Trinidad] Browser memory consumption

2008-03-27 Thread Volker Weber
Hi Davide, did you use own javascript in your app? If you assign htmlNode objects to javascript object properties and/or vice versa the IE (at least IE6) did not correct free them on page unload. You need to remove this yourself by assigning undefined to those properties in the unload handler. W

Re: navigation/form: wrong url displayed in browser

2008-04-02 Thread Volker Weber
Hi, you can made the welcome-file a frameset, to hide the real inner urls. Regards, Volker 2008/4/2, arne anka <[EMAIL PROTECTED]>: > > See here: > > http://wiki.apache.org/myfaces/FAQ#StaleLink > > > > ah, thanks a lot. > but, alas, it is more like a better description of the problem wi

Re: My Faces - SelectOneRadio Problem

2008-04-16 Thread Volker Weber
Hi, see layout="spread" and t:radio http://myfaces.apache.org/tomahawk/tlddoc/t/radio.html Regards, Volker 2008/4/16, Rajnikant <[EMAIL PROTECTED]>: > > Hello All, > > I am working on My Faces 1.2.2 version to implement SelectOneRadio. > Its working fine with both (Horizontal and vert

Re: [Tobago] a listbox in a popup

2008-05-19 Thread Volker Weber
Hi Tobias, i think this error message is because of a conversionError in the selectOneListbox. Could you post the code for the Author-Converter? Regards, Volker 2008/5/19 Tobias Reifenstuel <[EMAIL PROTECTED]>: > Hi Helmut, hi All, > > thanks a lot for your help, but it still doesn't work.

Re: [Tobago] choosing popup to display

2008-05-20 Thread Volker Weber
Hi ben, you don't need multiple popups, just alternate content in on popup. e.g.: Regards, Volker 2008/5/20 ben_p <[EMAIL PROTECTED]>: > > Hi All, > I am again struggling

Re: [Tobago] a listbox in a popup

2008-05-21 Thread Volker Weber
e to use them. I just added to my author a method whitch is called > "toString" and is what the listbox is showing me. > > Regards, > Tobi > > Volker Weber schrieb: >> >> Hi Tobias, >> >> i think this error message is because of a conversionErr

Re: [Tobago] sheet language

2008-05-23 Thread Volker Weber
Hi Slavador, you can put a spanish properties file int your applications tobago-resource path. the relevant file is "html/scarborough/standard/property/tobago_[es].xml look at org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago.properties.xml in tobago-scarborough.jar

Re: [Tobago] Sorting problems

2008-06-01 Thread Volker Weber
Hi Slavador, what is the implementation of sheets value valuebinding ? in the sorter you do a sheet.getValue() wich invokes the valueBinding method, and at rendering the sheet did again a getValue() and therefore reinvoke this method. Regards, Volker 2008/5/30 Bravo Villegas Salvador Fr

Re: [Faces][Core]

2008-06-03 Thread Volker Weber
Hi Guy, you can configure a bean with a getter which returns a appropriate TimeZone. see this thread http://www.mail-archive.com/users%40myfaces.apache.org/msg21412.html Regards, Volker 2008/6/3 Guy Bashan <[EMAIL PROTECTED]>: > Thanks for your answer, > Actually I was trying using GMT (

Re: Datatable binding problem

2008-06-07 Thread Volker Weber
Hi Guy, could you post your loop code? Regards, Volker 2008/6/7 Guy Bashan <[EMAIL PROTECTED]>: > Hi again, > > > > In order to validate set of dropdowns in a datatable, I wrote a method to > extract all components with a specific id (under that datatable), then scan > the returned value

Re: Datatable binding problem

2008-06-07 Thread Volker Weber
t;htmlSelectOneMenuFrom.setValid(false); > > FacesUtil.addErrorMessage(htmlSelectOneMenuFrom.getClientId(FacesUtil.getFacesContext()), >"#{bundle['cmp_targeting.time.fromTo.required']}"); > } >} > >return isOk; > } > > I call the meth

Re: Datatable binding problem

2008-06-08 Thread Volker Weber
Hi Guy, > > One more thing: it seems that this code: htmlDataTableDayParts.getRowCount(); > always returns zero. > Is it a proper behavior? not if your datatable contains data. http://java.sun.com/javaee/javaserverfaces/1.2_MR1/docs/api/javax/faces/component/UIData.html#getRowCount() Regards,

Re: collection within collection --

2008-06-10 Thread Volker Weber
Hi, you may take a look at tomahawks columns tag [1]. I think you need to convert the Set to List, but t:columns should work than. Regards, Volker [1] : http://myfaces.apache.org/tomahawk/tlddoc/t/columns.html 2008/6/9 Wholesale Accuracy - Brennan O'Shea <[EMAIL PROTECTED]>: > I'm using t

Re: Value of ValueBinding in action

2008-06-17 Thread Volker Weber
Hi Mario, i think your problem is the "bundle". if this is a var then it is not accessible before tag creation in renderPhase. you can try the s:loadBundle from sandbox. Regards, Volker 2008/6/17 <[EMAIL PROTECTED]>: > Hi, I need to know, in my action, the value of a specific HtmlOutpu

Re: date conversion in tooltip ?

2008-07-01 Thread Volker Weber
Hi Michael, 2008/6/30 Michael Heinen <[EMAIL PROTECTED]>: > I have to format a date inside a tooltip (or title attribute). > > Is there any way to apply a converter for a tooltip ? afaik no. > > Or is it possible to call a converter via EL ? afaik no. > > > > I fear that converters are always

Re: [TRINIDAD] Unable to use Converter with tr:inputDate

2008-07-03 Thread Volker Weber
Hi! You should not use binding if you can avoid it ! If you need the component in the bean it is better to do a lookup via clientId. 2008/7/3 dushyant agarwal <[EMAIL PROTECTED]>: > Hi, > I have JSF page which contains a tr:inputDate component as given below:- > > have you tried: publi

Re: How to set a converter default property?

2008-07-10 Thread Volker Weber
Hi, don't you get ParseExceptions on deploy? I don't know if this is the problem, i never used property on validator, but my idea complains about: 2008/7/10 [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > Hi, i try to set a default property for a converter in this way: > > xyValidtor

Re: How to set a converter default property?

2008-07-10 Thread Volker Weber
Hi simon, 2008/7/10 [EMAIL PROTECTED] <[EMAIL PROTECTED]>: [...] > The JSF standard does not support this. When defining a validator in a > faces-config.xml file, the only supported xml elements are validator-id and > validator-class. [...] The http://java.sun.com/dtd/web-facesconfig_1_1.dtd sup

Re: [Tobago] Retrieve sheet selected row value

2008-07-11 Thread Volker Weber
Hi Salvador, you need to add the state attribute to the sheet, which points to a SheetState[1] object. then you can do : List indexes = sheetState.getSelectedRows(); which returns the list of selected row indexes, in case of selectable="single" just one. Regards, Volker [1]: http://my

Re: [Tobago] tc:sheet problems

2008-07-15 Thread Volker Weber
Hi Salvador, please post the source of the jsf pages and the relevant beans. Regards, Volker 2008/7/15 Bravo Villegas Salvador Francisco <[EMAIL PROTECTED]>: > Hi all. > > > > I'm having a problem with tc:sheet. > > In the first page I can select all the records show in the table, but when

Re: [Tobago] tc:sheet problems

2008-07-16 Thread Volker Weber
go] tc:sheet problems > > Hi Volker, > > Sorry. I send the jsf and the beans related. > > Regards > Salvador > > > -Mensaje original- > De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Volker Weber > Enviado el: Martes, 15 de Julio de 2008 02:0

Re: [Tobago] tc:sheet problems

2008-07-16 Thread Volker Weber
; Salvador > > -Mensaje original- > De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Volker Weber > Enviado el: Miércoles, 16 de Julio de 2008 02:42 a.m. > Para: MyFaces Discussion > Asunto: Re: [Tobago] tc:sheet problems > > Hi Salvador, > > i had n

Re: [Tobago] tc:sheet problems

2008-07-17 Thread Volker Weber
Hi Salvador, sorry i still found no time to look into your sources. Could you reproduce your problem in the 1.0.17 demo? If so please describe at detail the steps to reproduce this and what you expect to happen instead. Regards, Volker 2008/7/16 Volker Weber <[EMAIL PROTECTED]>

Re: ReRendering of ComponentBindings fails

2008-07-30 Thread Volker Weber
Hi, the getter for a binding component is only invoked if the framework need the component to create the view. In case of rerendering the view is restored and not new created. In case of restoring (and if the binding getter returns null) the setter is invoked. If you want to populate the panelGr

Re: [MyFaces][Core] Command Link in a datatable

2008-08-03 Thread Volker Weber
.edit} when you press the link? Your problem looks like the value of #{editableVideo.edit} changes between rendering and next request (the save click) from true to false. Maybe because you uncheck the selectbox before clicking the link? A action is not executed if the rendered evaluates to false at

Re: [MyFaces][Core] Command Link in a datatable

2008-08-04 Thread Volker Weber
of the checkbox is: > > > > Thanks, > Guy. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Volker Weber > Sent: Sunday, August 03, 2008 6:34 PM > To: MyFaces Discussion > Subject: Re: [MyFaces][Core] Command Link in a data

Re: Composite view from several "request" managed beans

2008-08-20 Thread Volker Weber
Hi Anton, 2008/8/20 Anton Gavazuk <[EMAIL PROTECTED]>: > Hi Guy, > > thanks for answer > >>>All necessary beans will be instantiated automatically by JSF as long as you >>>define them in your faces-config.xml file. > its clear, > but I want to put some business related info in bean before showing

Re: commandbutton action not being invoked if form contains programatically-defined selectitems

2008-08-24 Thread Volker Weber
Hi Cedric, 2008/8/24 Cedric Hurst <[EMAIL PROTECTED]>: > > I have an which contains two elements. These > elements are being populated programatically with a tied to > a JSF managed bean which returns List. Unfortunately, when I > attempt to click the to invoke an action, the action does > n

Re: [tobago] parsing warning by org.apache.myfaces.renderkit.html.util.ReducedHTMLParser

2008-09-04 Thread Volker Weber
Hi Zied, 2008/9/4 Zied Hamdi <[EMAIL PROTECTED]>: > Hi, > > I have the following warning many times in logs: > > 12:43:45,671 INFO [STDOUT] 2008-09-04 12:43:45,671 [http-127.0.0.1-8080-1] > WARN org.apache.myfaces.renderkit.html.util.ReducedHTMLParser.parse(569) - > Invalid tag found: unexpected i

Re: [Tobago] Tree add colums

2008-09-04 Thread Volker Weber
Hi Salvador, 2008/9/4 Bravo Villegas Salvador Francisco <[EMAIL PROTECTED]>: > Hi all, > > > > I have the following component > > > > > value="#{sdpTreeBacker.newTree}" > > state="#{sdpTreeBacker.treeState}" > > idReference="userObject.id" > > nameReference="userObject.name" > >

Re: [tobago] is chrome in the plans

2008-09-05 Thread Volker Weber
Hi Zied, 2008/9/5 Zied Hamdi <[EMAIL PROTECTED]>: > Hi, > > I was very excited to test the google browser "Chrome" and see how fast it > is, the only problem is a layout space allocation with tobago (see image). > > I know this is a new product, the question is only: is there a work being > done o

Re: [Trinidad] Strange subform behavior

2008-09-10 Thread Volker Weber
Hi, why would you expect a not submited subform should loose changes made on the client (the submitted value)? This is exact the behavior i would expect. And BTW how the tobago subform works. Regards, Volker 2008/9/10 Andrew Robinson <[EMAIL PROTECTED]>: > Okay, I know the problem: > > The

Re: [tobago] actionListener on tab selection

2008-09-11 Thread Volker Weber
Hi Zied, 2008/9/11 Zied Hamdi <[EMAIL PROTECTED]>: > Hi all, > > I need to load data on a tab click (having the switchMode="reloadTab" or > "reloadPage"), I notice there is no action, actionListener attributes is > there a way to be notified on the server about a tab change. The other > solution

Re: [Trinidad] Strange subform behavior

2008-09-20 Thread Volker Weber
changes to the model. >> >> >> >> Right now, JSF treats use case #2 very poorly and the standard >> >> work-around is to clear the submitted value and local values from >> >> EditableValueHolders when it is desired to reset their rendered sta

Re: [TOBAGO] How to debug debug transitions in 's

2008-10-02 Thread Volker Weber
Hi Groovie, add the DebugPhaseListener and set debuglevel to trace, to see how the app goes through the lifecycle. You should also add a tc:messages tag to see if any error occurs, which would result in the described behavior. Regards, Volker 2008/10/2 Groovie <[EMAIL PROTECTED]>: > > Dea

Re: [TOBAGO] How to debug debug transitions in 's

2008-10-03 Thread Volker Weber
Hi, this is logged at info level, set debug to level trace and you get timing for every phase. Regards, Volker 2008/10/3 Groovie <[EMAIL PROTECTED]>: > > Hy, > > i get this: > > INFO DebugPhaseListener:65 - Total response time : 16815 milliseconds > > Did i miss something ? > -- > View th

<    1   2   3   4   5   6   7   8   9   >