Re: Integration of Tobago into portal

2007-04-20 Thread Volker Weber
Hi Kristoff, is tobago full working with your changes to the PageRenderer? I don't know much about portlets, but there are many places with code like this in tobago: // TODO PortletRequest if (externalContext.getRequest() instanceof HttpServletRequest) {...} From this i would expect

Re: [Tobago] The UnderLayer for popup is displayed for the whole page

2007-04-23 Thread Volker Weber
Hi Madan, please reopen TOBAGO-324. Regards, Volker 2007/4/23, Madan Narra [EMAIL PROTECTED]: Hi Volker, Got the Jar's for nightly build. Tobago-324 is resolved and its working good now. Thnx for the updates. But i had another issue. Its the same to Tobago-324 issue but related to

Re: [Tobago] How to make button disable when user inputing a text field by using tc:in?

2007-04-25 Thread Volker Weber
Hi, just a litle improvment: If you just want to add the disabled style instead of replacing all styles use Tobago.addCssClass('page:clickMe', 'tobago-button-disabled'); you can also use Tobago.removeCssClass(element, className) to remove a specific class from a element. Regards, Volker

Re: [Tobago] Special Needs

2007-04-25 Thread Volker Weber
Hi yazid, for info about the tobago clientside javascript log window see the logging.js in standard theme. This window uses effects.js from script.aculo.us to make it moveable, you can use a kind of reload facet or custom javacript with ajax to update the content. Regards, Volker

Re: jsf link to local file

2007-04-25 Thread Volker Weber
Hi, try file://F:\dev\dir.pdf are you sure the error is ... c is not connected ...? should be ... F is not connected ... in this case. Regards, Volker 2007/4/25, Brummeline Braathen [EMAIL PROTECTED]: I would like to open a file from my local filesystem when I click on an outputlink. The

Re: jsf link to local file

2007-04-25 Thread Volker Weber
Hi, 'file:///F:/dev/dir.pdf' is OK on linux systems (if /F:/dev/dir.pdf exists), i don't know how to make this work on windows, you can try file:/F:\dev\dir.pdf maybe there is just one '/' to much after 'file:' Regards, Volker 2007/4/25, Brummeline Braathen [EMAIL PROTECTED]: Volker

Re: How to configure a custom Lifecycle?

2007-04-25 Thread Volker Weber
Hi, yes it is, but that's not what i need. Is there no way to do this on library level, e.g. somehow inside the tobago-core.jar? Regards, Volker 2007/4/6, Matthias Wessendorf [EMAIL PROTECTED]: 't that a web.xml context-param ? On 4/6/07, Volker Weber [EMAIL PROTECTED] wrote: Hi

Re: [Tobago] Need helps : tc:out autamatic reload

2007-04-25 Thread Volker Weber
Hi yazid, put the tc:out inside a tc:panel tc:panel f:facet name=reload tc:reload frequency=1000 update=true / /f:facet tc:out value=#{monitor.liveReporter.message} / tc:panel Regards, Volker 2007/4/25, yazid [EMAIL PROTECTED]: Hi all; I need to reload automatically a tc:out

Re: Re: Problem with tc.link / Deployment Problem with current snapshot

2007-04-26 Thread Volker Weber
Hi Kristoff, the exception looks like mixing old and new tobago-core jars, can you ensure this is not the case. Regards, Volker 2007/4/26, [EMAIL PROTECTED] [EMAIL PROTECTED]: Hello, With the current snapshot I get this: Caused by: javax.faces.FacesException:

Re: file-upload

2007-04-26 Thread Volker Weber
Hi, afaik you need either tobago-fileupload-1.0.x.jar OR TobagoMultipartFormdataFilter @Bernd: please correct me if i'm wrong. Regards, Volker 2007/4/26, Helmut Swaczinna [EMAIL PROTECTED]: Hi, here're some snippets from my code: JSP: tc:file id=newFileItem

Re: [Tobago] Problem with JSTL and multiple markup attributes

2007-04-26 Thread Volker Weber
Hi Helmut, you can't have multiple markup attributes at one tag. But you can set multiple markups in one attribute. The markup attribute takes a comma separated list of markups, or a valuebinding to a String[] property, or a valuebinding to a single markup string. Regards, Volker 2007/4/26,

Re: [Tobago] Problem with JSTL and multiple markup attributes

2007-04-27 Thread Volker Weber
understand why the valdation is only executed, when the JSTL taglib is included. Can you explain this to me? Regards Helmut - Original Message - From: Volker Weber [EMAIL PROTECTED] To: MyFaces Discussion users@myfaces.apache.org Sent: Thursday, April 26, 2007 9:34 PM Subject: Re: [Tobago

Re: tx:date got a day before selected date

2007-05-15 Thread Volker Weber
http://wiki.apache.org/myfaces/FAQ#Date or http://tinyurl.com/34zngs 2007/5/15, Jonathan Obregon A [EMAIL PROTECTED]: Hi all, Here's my problem: when I select a date in tx:date control, the value is a day before than selected one. By example, I select May 14 in calendar, and the value in

Re: [Tobago] Regarding renderedPartially in Sheet

2007-05-18 Thread Volker Weber
Hi Madan, it is currently not possible to do ajax refresh for components inside of a sheet. The current algorithm to find and render the requested componenent did not setup a parent UIData component to the requested rowIndex. so you will not get the correct values if you use the var attribute

Re: [Tobago] Regarding renderedPartially in Sheet

2007-05-20 Thread Volker Weber
Hi Madan, this is not possible in tobago. If you need this please add a feature request in jira for something like the 'rowIndexVar' in tomahawks dataTable. Regards, Volker 2007/5/19, Madan Narra [EMAIL PROTECTED]: Hi Volker, thnx for the solution... I have another doubt regarding the

Re: [Tobago] datepicker needs specific id

2007-05-22 Thread Volker Weber
Hi Clemens, this is a bug in tobago, i just created a jira entry: https://issues.apache.org/jira/browse/TOBAGO-406 Thanks for reporting this. afaik it is not possible to suppress this warning, exept to configure the logging api to not log warnings for this category, which is probably not what

Re: Submitting parent window from child window?

2007-05-23 Thread Volker Weber
Hi Bjørn, i have done this before, but with tobago, not with tomahawk or plain jsf. I don't know what is needed there to submit, but something like window.opener.document.getElementById('form:buttonId').click(); should at least simulate a click on a button in the parent window. hope this

Re: [ Tobago ] Regarding variable scope in Sheet and Popup

2007-05-24 Thread Volker Weber
Hi Madan, it is currently not possible to update content of sheet partially. for your problem there is a workaround: place the popup as direct facet of the sheet and use the tc:popupReference tag inside the tc:link. you need a additional bean property for the codeValue and a actionListener

Re: [Tobago] How does tc:validateFileItem check the contentType?

2007-05-24 Thread Volker Weber
Hi Helmut, tobago utilises commons-fileUpload and for the contentType FileItem.getContentType(): http://jakarta.apache.org/commons/fileupload/apidocs/org/apache/commons/fileupload/FileItem.html#getContentType() from this doc i think the uploading browser must set the contenttype properly for

Re: [Tobago] tc:message for tx:date solution

2007-05-25 Thread Volker Weber
Hi Clemens, the id in addMessage() is still wrong. At least the id of the tc:page is missing. Please take a look into the generated html source for the correct id of the input .. generated by the tc:date. Regards, Volker 2007/5/25, Clemens Sietas [EMAIL PROTECTED]: Hello Helmut, thank

Re: Make changes on component using ViewHandler

2007-05-25 Thread Volker Weber
Hi, 2007/5/25, [EMAIL PROTECTED] [EMAIL PROTECTED]: You find the components after the renderer phase built by encodeChildren. Search for the topic Change visibility dynamically and you'll find a solution... http://www.nabble.com/Change-visibility-dinamically-tf3299810.html Regards,

Re: JSF Table - How to Clean-up Previous Selections

2007-05-25 Thread Volker Weber
or just a 2007/5/25, Mike Kienenberger [EMAIL PROTECTED]: On 5/25/07, Caroline Jen [EMAIL PROTECTED] wrote: public String updateDeparturePersonnel() { departurePersonnel.clear(); at this point? // iterate through the data rows ... for ( int index =

Re: Popup not opening if operations take time

2007-05-28 Thread Volker Weber
Hi Madan, for operations which takes long time you should not use renderedPartially. there is ia timeout for ajax requests to enable removing the blocking layer from the app if a request fails. It is no problem to use a popup without renderedPartially. Regards, Volker 2007/5/28, Madan

Re: Popup not opening if operations take time

2007-05-28 Thread Volker Weber
seconds to come up Forgot to Place [ Tobago ] in Subject Line :) Regards, Madan N On 5/28/07, Volker Weber [EMAIL PROTECTED] wrote: Hi Madan, for operations which takes long time you should not use renderedPartially. there is ia timeout for ajax requests to enable removing

Re: Popup not opening if operations take time

2007-05-29 Thread Volker Weber
Hi Madan, 2007/5/29, Madan Narra [EMAIL PROTECTED]: Hi Volker, This code worked and was able to see the popup as the time out has set to 1. I tested for few times to see the Time which my List gets set. Its taking around 8-10 sec so now this works fine. But the popup opens only after

Re: tobago partial rendering question

2010-04-13 Thread Volker Weber
Hi Michael, for actions used in partial rendering you should always return null! I the action returns a string than a full reload is made! I suggest using actionListener for partial actions. When rendering partially only the requested subview (plus the action component if outside) is processed

Re: How to activate an tc:tab element to be on top in tobago

2010-04-14 Thread Volker Weber
Hi Michael, yes, bind the tabIndex attribute of tc:tabgroup to an int in your controller, than you can set the index in your action. Regards, Volker 2010/4/14 Michael Kakuschky kakusc...@elbe-net.de: Hello, is there a way to activate an tc:tab element within an action so that it comes to

Re: tobago partial rendering question

2010-04-14 Thread Volker Weber
(String string2) {       this.string2 = string2;   } } Volker Weber schrieb: Hi Michael, for actions used in partial rendering you should always return null! I the action returns a string than a full reload is made! I suggest using actionListener for partial actions. When rendering

Re: tobago partial rendering question

2010-04-14 Thread Volker Weber
.. That the reason I subforms. Is there another common way to solve this kind of problem? Thanks and best regards Michael Volker Weber schrieb: Hi Michael, after a more closer view to your jsp i found the problem. The tc:form arround the box is the probem, using subforms you are reduce

Re: [TOBAGO] tobago partial rendering question

2010-04-14 Thread Volker Weber
btw: please prefix the subject with [TOBAGO] for tobago related messages. 2010/4/14 Volker Weber v.we...@inexso.de: Hi  Michael, not a common way, but there is always something you can do :-) But how exact depends on the concrete situation. You can put a tc:command  with action 1

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

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

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

2010-04-27 Thread Volker Weber
Hi, for panel you should use tobago-panel-markup-important. The gridlayout is just the panel content. Regards, Volker 2010/4/27 tobagouser srikanthchowda...@yahoo.com: Hi Udo, I created a new markup for box and its worked.Thanks for that.I tried to create a markup for panel in the

Re: Enums in selectItems

2010-05-03 Thread Volker Weber
Hi, No need to implement this yourself, there is an EnumConverter in myfaces-converters: http://myfaces.apache.org/commons/index.html Regards, Volker 2010/5/1 Anton Gavazuk antongava...@gmail.com: Hi Jozef, see it: public class EnumConverter implements Converter {    public Object

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

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

2010-05-10 Thread Volker Weber
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 returns a String ! Are there any other (tc|f):selectItems tags in your page? The path to the relevant component

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

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 tc:script file=scripts/myFunctions.js onload=jsFunction()

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 tobago-resource-path/html/standard/speyside/tag/ Regards, Volker

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

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

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: tc:button label=Detail actionListener=#{suchController.selectDetail} f:facet name=popup ... /f:facet f:parameter name=detail value=#{perGes}/ /tc:button and in suchController: public void selectDetail(ActionEvent

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

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 greenm...@gmail.com: Hello! I'd like to insert into a method of my

Re: AW: UI component behavior problem

2005-12-03 Thread Volker Weber
PROTECTED] Auftrag von Volker Weber Gesendet: Freitag, 2. Dezember 2005 18:57 An: MyFaces Discussion Betreff: Re: UI component behavior problem Hi Mathias, never heard of layout=spread before, it's illegal value according to the tld, but i looked into the source and the examples and at least i

Re: Problem with the newspaperTable

2005-12-05 Thread Volker Weber
Hi, just for info: The ScalarDataModel is a DataModel for a single row with the value object as row-data. If you put a Set as value to the dataTable you can create a table with one row, but how will you define your column values? So of cause a Set is of 'any other type', but it made no sense to

Re: Simplifying column expression

2005-12-07 Thread Volker Weber
Hi, i think there is non need of a my:column. It should suffice just to have a columnHeader tag, extending f:facet tag, and just create a UIOutput component and add this as facet 'header' to the parent component. Regards Volker Mike Kienenberger wrote: Unless you're using some sort of

Re: [OT] myfaces, a portal, and ajax

2005-12-07 Thread Volker Weber
Hi, Ryan Wynn wrote: Anyway, this works as intended. The span gets updated with the correct html and it looks far better than an entire page refresh. My problem is that setting the innerHtml does not seem to be reinterpreting embedded javascript and stylesheet references. innerHtml was

Re: Question inputHidden

2005-12-08 Thread Volker Weber
Hi, just a guess: the value attribute of the hidden is bound to a ResourceBundle. It is not possible to set the value in updateModel phase, so it fails and you skipping the aplication phase. try to get the value via the myBean object. Regards Volker CLEMENT Sébastien GC EUR wrote: Hi,

Re: What is wrong with this code

2005-12-08 Thread Volker Weber
Hi, Simon Kitching wrote: Onur Tokan wrote: I have a problem about creating dynamic HtmlDataTable component. The following code renders only the column's facets. NOT the CONTENTS... Thanks... HtmlDataTable dataTable = new HtmlDataTable(); for (int i = 1; i = 10 i++) { UIColumn

Re: What is wrong with this code

2005-12-08 Thread Volker Weber
Hi, Onur Tokan wrote: Thank you simon, I've already tried to set unique id. I think we are missing something. Maybe expert team members may show the way to do it. I've read all the forum postings before asking here. There is no exact answer about this topic. Maybe UIData component doesn't

Re: What is wrong with this code

2005-12-09 Thread Volker Weber
Hi Harald, you don't set any content to your UIData component, so you can't expect any content rendered. Setting the var property without using it in the coulum content is useless. But it makes no sense to have content without valuebindings using the 'var'. But to force your table to display

Re: myFaces 1.1.1 Date problem

2005-12-14 Thread Volker Weber
Hi, see this thread for this problem and a possible solution: http://www.mail-archive.com/users@myfaces.apache.org/msg10901.html Regards Volker Mario Ivankovits wrote: Hi! Im facing a problem in that my project used to work fine before on 1.0.9 but since iv migrated to 1.1.1 i have been

Re: Anyway to show SelectOneRadio in multiple table rows?

2005-12-16 Thread Volker Weber
Hi, see t:radio tag and the wiki: http://wiki.apache.org/myfaces/Radio regards Volker Emily Gu wrote: Hi, I would like to show radio button in multiple table rows. Such as: table tr tdinput type=radio name=type value=1One/td

Re: tobago examples

2005-12-20 Thread Volker Weber
get the actually deployed war from this link: http://tobago.atanion.net/tobago-example-demo.war Regards Volker Weber Dennis Byrne wrote: 1.) http://tobago.atanion.net/tobago-example-demo/ 2.) click on Tree Control 3.) click on the second tab. 4.) click on the first tab. 5.) click

Re: WARNING: Component _id229 just got an automatic id,

2005-12-23 Thread Volker Weber
Hi, the warning is created whenever, on a component without an id set, a getClientId() call is made. If this clientId just used internaly (for logging etc.) and not rendered out then you won't found it in the html. Have you application generated UIComponents where no id is set explicitly? Mike

Re: WARNING: Component _id229 just got an automatic id,

2005-12-23 Thread Volker Weber
for every component on the page (e.g., every h:outputText component, etc.)? Thx. Mike --- Volker Weber [EMAIL PROTECTED] wrote: Hi, the warning is created whenever, on a component without an id set, a getClientId() call is made. If this clientId just used internaly (for logging etc

Re: How to submit three forms on the same page using CommandLink

2005-12-30 Thread Volker Weber
Hi, what's the reason for using three forms? Can't you us a single form around all your components? BTW: at least in html it isn't possible to submit more than one form with usefull results. Regards Volker Emily Gu wrote: Hi, Is it possible to submit three forms that are on the same

Re: TobagoRenderKit.addRenderer

2005-12-30 Thread Volker Weber
Hello Olexandr, if you just want to set the href attribute you should use type=navigate : tc:link type=navigate action=[the url] label=A Label / Regards Volker Olexandr Zakordonskyy wrote: Hello Bernd. I want to replace LinkRenderer with own extended implementation of LinkRenderer. I

Re: TobagoRenderKit.addRenderer

2005-12-30 Thread Volker Weber
. -Original Message- From: Volker Weber [mailto:[EMAIL PROTECTED] Sent: Friday, December 30, 2005 7:01 PM To: MyFaces Discussion Subject: Re: TobagoRenderKit.addRenderer Hello Olexandr, if you just want to set the href attribute you should use type=navigate : tc:link type=navigate

Re: AW: EditableValueHolder rendering behavior / Restore View

2005-12-31 Thread Volker Weber
Hi, Matthias, can you post the relevant jsf code, and the action/actionListener code? This may help us to see what's wrong. Regards Volker Matthias Kahlau wrote: Hi Simon, Perhaps your button is inside a different form from the one containing your input text? HTML only supports

Re: AW: AW: EditableValueHolder rendering behavior / Restore View

2006-01-01 Thread Volker Weber
] Auftrag von Volker Weber Gesendet: Samstag, 31. Dezember 2005 13:22 An: MyFaces Discussion Betreff: Re: AW: EditableValueHolder rendering behavior / Restore View Hi, Matthias, can you post the relevant jsf code, and the action/actionListener code? This may help us to see what's wrong. Regards

Re: AW: AW: AW: EditableValueHolder rendering behavior / Restore View

2006-01-01 Thread Volker Weber
the page (In my last email, I spuriously wrote that the inputText is rendered empty, but it actually was an inputTextarea!). Regards, Matthias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Auftrag von Volker Weber Gesendet: Samstag, 31. Dezember 2005 13:22

Re: AW: messages outputs one error message summary many times

2006-01-03 Thread Volker Weber
Hi, i also haven't seen that behavior anytime. Matthias, can you again post a bit more of your code? jsf context of the component where the multiple message is for, and action code of the submit button. the posted code of h:messages simply says: all messages going here. the problem

Re: Eventually Bugs in InputSuggestAjax

2006-01-04 Thread Volker Weber
Hi, [EMAIL PROTECTED] wrote: *Warnung: Aus diese Nachricht wurde ein oder mehrere Anhänge entfernt (ole0.bmp). Bitte lesen Sie den bzw. die Weber-Oldenburg-Attachment-Warning.txt Anhänge für nähere Information. * Hi I just realized, that the InputSuggestAjax Box doesn't react on a

Re: AW: Eventually Bugs in InputSuggestAjax

2006-01-05 Thread Volker Weber
Hi Andreas, [EMAIL PROTECTED] wrote: Hi guys! With libs do I need?Are they in the newest nightly? And is the List then shown right under the inputtag? By the way: Is there another way to checkout the newest nightly (not from SVN - because the port is blocked in my company...) Perhaps can

Re: HtmlDataTable with Ajax

2006-01-05 Thread Volker Weber
I just made this for tobagos sheet. Paging and sorting is now ajax-based, if ajax is enabled. BTW: switching the active tab in tabGroup could also set to work ajax-based. But this is more than patching just a single component. A full ajax lifecycle is needed, and i can't see how this could be

Re: HtmlDataTable with Ajax

2006-01-05 Thread Volker Weber
Hi, Werner Punz wrote: Onur Tokan wrote: Hi, Is there anyone tried to embed Ajax into HtmlDataTable? I'am using HtmlDataTable with paging and scrooler controls on it and I want to implement it by using ajax. Any 3rd party component works. Any suggestion? There is one in the sandbox...

Re: HtmlDataTable with Ajax

2006-01-05 Thread Volker Weber
Hi, Werner Punz wrote: Volker Weber wrote: Hi, Werner Punz wrote: Onur Tokan wrote: Hi, Is there anyone tried to embed Ajax into HtmlDataTable? I'am using HtmlDataTable with paging and scrooler controls on it and I want to implement it by using ajax. Any 3rd party component works. Any

Re: HtmlDataTable with Ajax

2006-01-05 Thread Volker Weber
look at the tobago's sheet component. It's not ajax enabled. Can you explain the way you achive it. Will you send the sources, Regards, On 1/5/06, Volker Weber [EMAIL PROTECTED] wrote: Hi, Werner Punz wrote: Onur Tokan wrote: Hi, Is there anyone tried to embed Ajax

Re: Problem text with inputText rendering behaviour in a dataTable

2006-01-05 Thread Volker Weber
Hi Matthias, Matthias Kahlau wrote: Hi! I have a strange problem using inputText in each row of dataTable. The inputText has a component-binding to a session-scoped Backing-Bean. I use an immediate commandButton to delete some selected rows. When the JSF page is redisplayed after

Re: HtmlDataTable with Ajax

2006-01-05 Thread Volker Weber
Volker Weber wrote: Or take a look at http://weber-oldenburg.dyndns.org/tobago-examples-demo/ where i have deployed the ajax enabled demo. Sorry wrong url, must be: http://weber-oldenburg.dyndns.org/tobago-example-demo/ -- Don't answer to From: address! Mail to this account are droped

Re: HtmlDataTable with Ajax

2006-01-05 Thread Volker Weber
the jsps to serve your request. But now it's fixed and the ajax enabled sheet and tabgroups should work. Regards Volker On 1/5/06, Volker Weber [EMAIL PROTECTED] wrote: Volker Weber wrote: Or take a look at http://weber-oldenburg.dyndns.org/tobago-examples-demo/ where i have deployed

Re: AW: Problem text with inputText rendering behaviour in a dataTable

2006-01-05 Thread Volker Weber
von Volker Weber Gesendet: Donnerstag, 5. Januar 2006 16:41 An: MyFaces Discussion Betreff: Re: Problem text with inputText rendering behaviour in a dataTable Hi Matthias, Matthias Kahlau wrote: Hi! I have a strange problem using inputText in each row of dataTable. The inputText has a component

Re: AW: Eventually Bugs in InputSuggestAjax

2006-01-05 Thread Volker Weber
Version: 1.1.2-SNAPSHOT Reason: Unable to download the artifact from any repository org.apache.myfaces:myfaces:pom:1.1.2-SNAPSHOT from the specified remote repositories: central (http://repo1.maven.org/maven2) ... Thanks! H -Ursprüngliche Nachricht- Von: Volker

Re: AW: AW: Problem text with inputText rendering behaviour in a dataTable

2006-01-05 Thread Volker Weber
a binding, because the related UIComponent is given as parameter at the validate() method. Regards, Matthias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Auftrag von Volker Weber Gesendet: Donnerstag, 5. Januar 2006 18:53 An: MyFaces Discussion Betreff

Re: HtmlDataTable with Ajax

2006-01-06 Thread Volker Weber
Hi Matthias, Matthias Wessendorf wrote: I saw you implemented scrolling by clicking on an image. Have thought about ajax-scrolling, by using the mouse wheel button? :-) no, i haven't thought about this, but i like the idea. Maybe i can integrate something like this. Regards, Volker

Re: HtmlDataTable with Ajax

2006-01-06 Thread Volker Weber
Hi, i wrote this before: If you checkout the sources you can enable ajax in the tobago-config.xml of the tobago-examples-demo. The sources are currently in incubator: svn co http://svn.apache.org/repos/asf/incubator/tobago/trunk/ tobago just replace enable-ajaxfalse/enable-ajax with

Re: HtmlDataTable with Ajax

2006-01-06 Thread Volker Weber
Hi Onur, if you are interested in using this component, (i wrote how to get it in the other mail) than you are bind to tobago, because it's not possible to combine tobago components with other jsf libraries. see: http://tobago.atanion.net/site/faq.html#tobago/myfaces%20extension so you may have

Re: InputDate Problems

2006-01-06 Thread Volker Weber
Hi, you can use an explicit converter: t:inputdate value=#{someDate} type=time f:convertDateTime timeZone=EST pattern=h:mm a /t:inputdate should do what you want. Regards, Volker Elam Daly wrote: Hi All, I have this - t:inputdate value=#{someDate} type=time timeZone=EST ampm=true/

Re: Something like forceId for regular components?

2006-01-06 Thread Volker Weber
Hi, can't you use these created ids in you javascript? If you set a id to the form component, and to all other namingContainer components, you will get defined ids for all your components and can work with them in your scripts. IMHO forceId makes more problems than it solves. Regards Volker

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

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 application uses

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

2006-01-09 Thread Volker Weber
-- - 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 mailinglist. To contact me direct create the mail address

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

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

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 most active

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

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 question

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 the

Re: myFaces - servlet redirect.

2006-01-17 Thread Volker Weber
that this all turns out to me some stupid mistake on my part. url: http://wiki.apache.org/myfaces/InvokingJsfPagesWithStandardUrls Note: jboss-4.0.3SP1 myfaces-1.1.1.zip -Original Message- From: Volker Weber [mailto:[EMAIL PROTECTED] Sent: 17 January 2006 14:38 To: Matthias

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: url-pattern/faces/url-pattern /faces/* just like discussed here:

Re: myFaces - servlet redirect.

2006-01-18 Thread Volker Weber
-example-nonfacesrequest/ web.xml snip: !--for sun ri (tested with version 1.1.01)-- url-pattern/FishServlet/url-pattern !--for myfaces (tested with version 1.1.1)-- url-pattern/faces/FishServlet/url-pattern Matthias Wessendorf schrieb: On 1/17/06, Volker Weber [EMAIL

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 another

Re: Dynamically refer to a component from another component

2006-01-19 Thread Volker Weber
I know that ID at runtime. I mean, I can use EL to bind values with my objects' properties, but could I also do something similar with component attributes? 2006/1/19, Volker Weber [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]: Hi, Enrique Medina wrote

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

Re: Dynamically refer to a component from another component

2006-01-19 Thread Volker Weber
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 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]: Hi

Re: Setting default value for x:inputFileUpload

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, but I

Re: Dynamically refer to a component from another component

2006-01-20 Thread Volker Weber
/19, Volker Weber [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] : Hi, you can get the rendered 'htmlId' of a component by component.getCientId(facesContext); so you can do : UIOutput texto5

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 like you have nested datatables? To get

<    1   2   3   4   5   6   7   8   9   >