Re: Tomahawk and trinidad

2006-10-10 Thread Thomas Spiegl
see http://wiki.apache.org/myfaces/Building_With_Maven for MyFaces build instructions. On 10/9/06, Chaitanya Kadaru <[EMAIL PROTECTED]> wrote: Thanks Jeff So I shall try to move to the latest snapshot since that may be better. Is there a document or link describing how I checkout myfaces and t

What's about Xforms?

2006-10-10 Thread Mosimann Matthias
Hi everyone   I don't want to rant here but: Nobody is talking about XForms as a true alternative to this ajax hype. Xforms should reduce _javascript_ coding on websites on 80%. You can build nice dialog with only xhtml and so on. I never read something about xfroms an jsf. So I'm wonder wh

Update content of wiki?

2006-10-10 Thread David Delbecq
Hello, could somebody who has the needed right update the content of this wiki page? http://wiki.apache.org/myfaces/Building_With_Maven I hit a problem yesterday with building, problem i thought was a myfaces pom configuration error. However, it seems i needed to force update of plugins. It is p

s:modalDialog show position

2006-10-10 Thread liulocust
When click a button to show the modelDialog,I want to display the modalDialog near the button not the screen center. Can s:modelDialog ‘s show method support the position parameter? And how to do this?thx. -- View this message in context: http://www.nabble.com/s%3AmodalDialog-show-position-tf

Change in GUI components not reflected in HTML page

2006-10-10 Thread Peter Rabing
Hi, I've created a component with a binding expression in which I created a component tree. The Tree contains 2 combo boxes with some items. Upon Selection of one item in the combo box (ValueChangeEvent) I change the entries in the 2nd combo box. But whichever way I do this, the change is neve

Re: Update content of wiki?

2006-10-10 Thread Gerald Müllan
Hi, everyone who is willing to change the content of the wiki is able to do it. Feel free to add new lines, you only have to register first. cheers, Gerald On 10/10/06, David Delbecq <[EMAIL PROTECTED]> wrote: Hello, could somebody who has the needed right update the content of this wiki pa

Re: Change in GUI components not reflected in HTML page

2006-10-10 Thread Gerald Müllan
d combobox from sandbox, as it is shown on our examples page: http://example.irian.at/example-sandbox-20061010/ajaxChildComboBox.jsf Would be a more fluid flow for the user. cheers, Gerald On 10/10/06, Peter Rabing <[EMAIL PROTECTED]> wrote: Hi, I've created a component with a

Attribute "visibleOnUserRole" - panelGrid vs. collapsiblePanel

2006-10-10 Thread Morten Mortensen
Does anyone else but me have the expression, that the attribute "visibleOnUserRole" does take effect for e.g. "t:panelGrid", but not for "t:collapsiblePanel"? -I am using MyFaces 1.1.4. Regards Morten Sabroe Mortensen

Re: Change in GUI components not reflected in HTML page

2006-10-10 Thread Martin Marinschek
nd of usecase you can also use the ajax enabled combobox from sandbox, as it is shown on our examples page: http://example.irian.at/example-sandbox-20061010/ajaxChildComboBox.jsf Would be a more fluid flow for the user. cheers, Gerald On 10/10/06, Peter Rabing <[EMAIL PROTECTED]> wrote: &g

Re: s:modalDialog show position

2006-10-10 Thread Gerald Müllan
Hi, Have you tried to influence the style behaviour over the "style" or "styleClass" attribute of the component? Don`t know if this works.. However, in s:modalDialog there is the dojo` predefined style class dojoDialog. You can also define it a second time, like: .dojoDialog{ position:rela

Re: popup timeout

2006-10-10 Thread Werner Punz
Yixing Ma schrieb: > Hi myfaces users, > > > > I need your help regarding the popup component. > > > > I want to add a delay to the popup. Instead of showing the popup right > away when hove over the item, I want to wait 5 seconds, if the mouse > after 5 seconds is still on the item, I will

Re: Change in GUI components not reflected in HTML page

2006-10-10 Thread Peter Rabing
so use the ajax enabled combobox > > from sandbox, as it is shown on our examples page: > > > > http://example.irian.at/example-sandbox-20061010/ajaxChildComboBox.jsf > > > > Would be a more fluid flow for the user. > > > > cheers, > > > > Ge

RE: panelTabbedPane Tag

2006-10-10 Thread Mark Babcock
Try this:   http://wiki.apache.org/myfaces/SettingTabClasses   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 10, 2006 3:21 AM To: users@myfaces.apache.org Subject: panelTabbedPane Tag   Hi, I am new to Jsf, and finding some problem in panelTabb

Re: What's about Xforms?

2006-10-10 Thread Matthias Wessendorf
I don't want to rant here but: Nobody is talking about XForms as a true alternative to this ajax hype. Xforms should reduce javascript coding on websites on 80%. You can build nice dialog with only xhtml and so on. I never read something about xfroms an jsf. So I'm wonder why people doesn't care a

Re: Tomahawk and trinidad

2006-10-10 Thread Matthias Wessendorf
I use 1.1.5-SNAP of both (myfaces/tom) , trin and facelets in a project web.xml says: http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";

AW: Re: Implementing a rendered property

2006-10-10 Thread [EMAIL PROTECTED]
It is an owner defined component Have I to do it in the same way like another property like styleClass? I thought it is a standard property. Because I use the isRencered(). public void encodeBegin(FacesContext context, UIComponent component) throws IOException

Re: s:modalDialog show position

2006-10-10 Thread liulocust
After try it,It did not work. the requirement position to show dialog may be dynamic.so the style can not resolve the requirement. I think maybe the dialogAttr.such as "dialogAttr="bgColor='white' bgOpacity='0.5' toggle='fade' toggleDuration='250'",but I can not find the position attribute . Ge

Re: Change in GUI components not reflected in HTML page

2006-10-10 Thread Volker Weber
anging the > > selection, otherwise you will only stay on > > the client. > > > > For this kind of usecase you can also use the ajax enabled combobox > > from sandbox, as it is shown on our examples page: > > > > http://example.irian.at/example-sandbox-2

Re: s:modalDialog show position

2006-10-10 Thread Gerald Müllan
I had a little deeper look into it; Just from the dojo source, you can`t control it via js. We must change the dojo source for it, and this is a ugly thing. At creation time of the dialog, the center of the page is calculated and the dialog positioned corresponding to it. You can only influence

Re: Re: Implementing a rendered property

2006-10-10 Thread Andrew Robinson
Is that code not working? That is the correct way to check if the component should be rendered. On 10/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: It is an owner defined component Have I to do it in the same way like another property like styleClass? I thought it is a standard property.

JSF-App freezes

2006-10-10 Thread Sebastian Menge
Hi all We are developing a simple search engine. after i searched three times, the whole app freezes, no commandlink does anything anymore. First time i search, a datatable is populated and shows the right results in the same view. Second time i search, the search is performed again, and the data

s:tableSuggestAjax next step?

2006-10-10 Thread John Ruffin
I've successfully added s:tableSuggestAjax to a page and it displays the given table rows and columns. What I think I want to do is: when a column is clicked I want to update the value of the inputTextBox. It currently only contains the snippet used for the suggestedItemsMethod. Also, I wan

Re: JSF-App freezes

2006-10-10 Thread Sebastian Menge
> We noticed similar behavior always when main portions of the app were > simply redisplayed. Since my main suspect is the panelNavigation2, i post the included navigation2.jsp too. Sebastian.

Passing request parameter to t:dataScroller

2006-10-10 Thread ronliddle
I have a page that is using a dataScroller and accepts a request parameter for filtering the data. The initial call to the page works and the data is filtered. However each subsequent request (ie. clicking on next page in scroller) fails because the filter parameter is not sent. I have included

Re: s:tableSuggestAjax next step?

2006-10-10 Thread Gerald Müllan
does this only with button-clicks, not automatically triggered. If its really that needed, you ma achieve this approach with ajax frameworks like ajax4jsf. cheers, Gerald [1] http://example.irian.at/example-sandbox-20061010/tableSuggestAjax.jsf [2] http://example.irian.at/example-sandbox-20061010

LifecycleFactory - no factory DEFAULT configured for this application

2006-10-10 Thread fischman_98
Do I need to set something up in the faces-Config.xml file to make this work? Trying to add a phaseListener to a requestScope managedBean and get java.lang.IllegalArgumentException: no factory DEFAULT configured for this application. Thanks. Matt Code: try {

panelTag label GIF

2006-10-10 Thread Colin Doyle
Hello,   Would anyone know of a way to specify a gif file as the label within a Tomahawk panelTag? Is there a way to specify something other than a String for the label attribute? I’m using Tomahawk 1.1.3, and thought that perhaps a more recent build might have this, or it might be plann

[announcement] new sandbox component: submitOnEvent

2006-10-10 Thread Mario Ivankovits
Hi! I am proud to announce a new sandbox component named submitOnEvent This components aims to do whats described in [1] and [2] For examples please have a look at http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/submitOnEventInput.jsp?view=markup http://svn.

Re: s:tableSuggestAjax next step?

2006-10-10 Thread John Ruffin
> If its really that needed, you ma achieve this approach with ajax > frameworks like ajax4jsf. > > cheers, > > Gerald > > [1] http://example.irian.at/example-sandbox-20061010/tableSuggestAjax.jsf > [2] http://example.irian.at/example-sandbox-20061010/pprPanelGroup.jsf

Re: [announcement] new sandbox component: submitOnEvent

2006-10-10 Thread Jeff Bischoff
Great! Seems like a common requirement, always figured this would end up as a tomahawk/sandbox component at some point. Looks interesting. I like this usage syntax - very straightfoward. I notice you didn't need to forceID the submit buttons on the example. Do we run into any ID trouble

Re: s:tableSuggestAjax next step?

2006-10-10 Thread John Ruffin
ere >> pushed to the dom nodes. In sandbox there is currently PPR (partial >> page rendering) [2] which should do this in future times. Currently it >> does this only with button-clicks, not automatically triggered. >> >> If its really that needed, you ma achieve thi

custom error page

2006-10-10 Thread K. Johnson
I implemented a customFacesServlet that catches servlet errors and redirects the user to a custom error page. However, when i select a link on the error page (to let the user go back to one of two pages), nothing happens. This is true whenI use a h:commandLink with a hardcoded action="myPage"

Right click open in new window

2006-10-10 Thread Meghana
Hi,    I have a master-detail listing page. When I right click on an item in the data table and open it in the new page, I don't see the details page as expected. It shows the listing page with the data table again. Does any one know a work around or a tag? Any help is appreciated.Thanks,-M

Re: s:tableSuggestAjax next step?

2006-10-10 Thread Gerald Müllan
des. In sandbox there is currently PPR (partial >> page rendering) [2] which should do this in future times. Currently it >> does this only with button-clicks, not automatically triggered. >> >> If its really that needed, you ma achieve this approach with ajax >> fra

Problem when deploying trinidad application

2006-10-10 Thread Brian.S
I just switched over from ADF Faces to Tinidad. I keep getting this stack trace when deploying to JBoss 4.0.4. From the stack trace, it is missing this class: org.apache.myfaces.trinidadinternal.core.desktop.DesktopTableRenderer According to the build I have of Trinidad, the class is in the wro

Re: s:tableSuggestAjax next step?

2006-10-10 Thread John Ruffin
r usecase, you need some partial page rendering >> >> mechanism in order to update model values behind the dom nodes to >> >> which the values where pushed. >> >> >> >> Currently this does not work with this component in a lonely manner. >> >&g

Re: s:tableSuggestAjax next step?

2006-10-10 Thread Gerald Müllan
ial page rendering >> >> mechanism in order to update model values behind the dom nodes to >> >> which the values where pushed. >> >> >> >> Currently this does not work with this component in a lonely manner. >> >> >> >> In

Re: Problem when deploying trinidad application

2006-10-10 Thread Thomas Spiegl
You might get help posting to [EMAIL PROTECTED] On 10/10/06, Brian.S <[EMAIL PROTECTED]> wrote: I just switched over from ADF Faces to Tinidad. I keep getting this stack trace when deploying to JBoss 4.0.4. From the stack trace, it is missing this class: org.apache.myfaces.trinidadinternal.co

Re: s:tableSuggestAjax next step?

2006-10-10 Thread John Ruffin
> >> > On 10/10/06, John Ruffin <[EMAIL PROTECTED]> wrote: >> >> >> >> Note to self: use a current build :-). Things look good now. >> >> >> >> >> >> John Ruffin wrote: >> >> > >> >> > I'm us

Re: LifecycleFactory - no factory DEFAULT configured for this application

2006-10-10 Thread Thomas Spiegl
please send LightboxBean.java. On 10/10/06, fischman_98 <[EMAIL PROTECTED]> wrote: Do I need to set something up in the faces-Config.xml file to make this work? Trying to add a phaseListener to a requestScope managedBean and get java.lang.IllegalArgumentException: no factory DEFAULT configured

Re: Right click open in new window

2006-10-10 Thread Andrew Robinson
You can only use outputLink to do that. Command link requires that the form be submitted, and "open in new window" simply creates a new browser window using the URL given. Therefore the form would never be submitted. On 10/10/06, Meghana <[EMAIL PROTECTED]> wrote: Hi, I have a master-detail

RE: LifecycleFactory - no factory DEFAULT configured for this application

2006-10-10 Thread David Friedman
Dear Matt, I think you would normally see these kinds of errors if you were trying to access the MyFaces code from a servlet outside of the MyFacesServlet. However, from your stack trace it seems you are trying to do this inside a MyFacesServlet. Are you sure your startup logs show proper MyFaces

Re: 1.1.3 Examples download

2006-10-10 Thread Wdiaz
see you http://people.apache.org/builds/myfaces/nightly/ Michael Ageeb escribió: Hello Guys, How can I download the 1.1.3 examples binaries and source. Thanks -- Michael Ageeb Fakhry http://mageeb.net No virus found

Sandbox - Graphic Dynamic Image

2006-10-10 Thread Daniel Murley
Hi Everyone, As part of a project I'm working on, I've utilised the sandbox dynamic image component. However I found the model that was used in there somewhat restrictive. As such I've heavily modified the component to allow the stream to be referenced instead of the imagerenderer. Is this some

Re: [announcement] new sandbox component: submitOnEvent

2006-10-10 Thread Mario Ivankovits
Hi Jeff! > I notice you didn't need to forceID the submit buttons on the example. > Do we run into any ID trouble with subviews, forms, subforms, etc? Shouldn't be a problem. I use the JSF computed client-id, and if there isn't a bug in this computation (there were in the past ;-) ) it should work.

Re: Problem when deploying trinidad application

2006-10-10 Thread Matthias Wessendorf
There was a change in myfaces to make some internals work better... on part of the fix was introducing a typo in a xml faces config entry "org.apache.myfaces.trinidadinternal.core.desktop.DesktopTableRenderer" I fixed it to "org.apache.myfaces.trinidadinternal.renderkit.core.desktop.DesktopTabl