t:pprPanelGroup does not submit using Ajax

2007-04-24 Thread Dave
Hello, I am using t:pprPanelGroup to update one part of page only. But it refresh the whole page using normal form submit. How should I debug it? I just installed IE script debugger. Thanks! Dave - Ahhh...imagining that irresistible new car smell?

Authentication doesn't trigger when using navigation rules ??

2007-04-24 Thread Rønnevik , Eivind
Hi! In my application I have some jsp's that are public, others are protected. In my web.xml I have specified FORM as auth-method like this: login-config auth-methodFORM/auth-method form-login-config form-login-page/WEB-INF/jsp/Login.faces/form-login-page

[Tobago] how I can set the tabindex attribute

2007-04-24 Thread David Steinkopff
Hi, I have different gridlayouts into a other gridlayout. now it the displayed layout sequence different to the sequence in the source code. now I would like to set tabindex to correct this different, it this possible? regards david

Re: t:pprPanelGroup does not submit using Ajax

2007-04-24 Thread Ernst Fastl
Hi dave, For JavaScript debugging I can recommend using Firefox together with the firebug plugin http://www.mozilla-europe.org/en/products/firefox/ and https://addons.mozilla.org/de/firefox/addon/1843 what partialTriggers or partialTriggerPattern do you have defined and which components are

RE: Authentication doesn't trigger when using navigation rules ??

2007-04-24 Thread hermod.opstvedt
Hei This is because this happens ( the rendering of the page) on the way out. You need to set: dispatcherFORWARD/dispatcher dispatcherREQUEST/dispatcher on your filter definition of your security definition This is a well known issue with JSF. Remember that you are not requesting a

Re: redirect / and FacesMessage problem

2007-04-24 Thread Mario Ivankovits
Hi! I was checking out the RedirectTracker documentation. Is there any installation/usage documents other than the javadoc? To make use of the RedirectTracker you have to: * add the myfaces sandbox to your project * configure the init paramter org.apache.myfaces.redirectTracker.POLICY in

Problems with the ExtensionsFilter

2007-04-24 Thread omidh
Hi all, I have a little problem with Tomahawk... when I try to execute these Code: AddResource resource = AddResourceFactory.getInstance(fCtx); UIComponent uiComponent = fCtx.getViewRoot(); Map uicMap = uiComponent.getAttributes();

panelTabbedPane: style round corner

2007-04-24 Thread Dave
for t:panelTabbedPane, Is it possible to make each Tab have round corner? can background image make it happen? Thanks! Dave - Ahhh...imagining that irresistible new car smell? Check outnew cars at Yahoo! Autos.

Re: Problems with the ExtensionsFilter

2007-04-24 Thread Mike Kienenberger
My understanding is that the extensions filter cannot be used in a portlet environment. You can add this to disable the extensions filter check. context-param param-nameorg.apache.myfaces.CHECK_EXTENSIONS_FILTER/param-name param-valuefalse/param-value /context-param I

Re: MyFaces Tomahawk Master Detail Scroll Sort Table Validation Problem

2007-04-24 Thread Mike Kienenberger
I'd recommend that you find another way of accomplishing your task. Best practice for JSF is to use a single form tag for the entire page. I then use sandbox:subForm tags to perform selective, partial validation. On 4/23/07, bajista man [EMAIL PROTECTED] wrote: Hi Guys! I'm having a strange

[Tobago] Debug Popup

2007-04-24 Thread yazid
Hi All; for my application; I need to use a popup to display a live back report . the Tobago debug popup from the demo seem to be adequate for my need. Can anyone tell me how to use it please. Thanks -- View this message in context:

RE: redirect / and FacesMessage problem

2007-04-24 Thread Garner, Shawn
So I don't need to register a PhaseListener or anything? Shawn -Original Message- From: Mario Ivankovits [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 24, 2007 2:40 AM To: MyFaces Discussion Subject: Re: redirect / and FacesMessage problem Hi! I was checking out the RedirectTracker

Re: tomahawk tabbed pane problem

2007-04-24 Thread Gerald Müllan
Hi, there is the tabContentStyleClass attribute of panelTabbedPane component. Try to set a corresponding width style in the stylesheet. This should affect all tab-bodies. Alternatively, you can try to play around with putting a div or table element around the content and set their width.

Re: MyFaces Tomahawk Master Detail Scroll Sort Table Validation Problem

2007-04-24 Thread bajistaman
Thanks, I was trying to understand why was failing but probably I'll have to find a workaround for this issue. I'll take a look at subform as you recomended. Mike Kienenberger wrote: I'd recommend that you find another way of accomplishing your task. Best practice for JSF is to use a single

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

2007-04-24 Thread Wong, Emmanuel \(Sam\)
Hi: I would like to disable a submit button when user is entering a text field by using tc:in? Could someone give me better direction? Thanks. For example: tc:script function disableButton() { var submitBut = document.getElementById('submit'); alert(submitBut = ' +

RE: tomahawk tabbed pane problem

2007-04-24 Thread Nanabolu, Bhvaharan
Hi Gerald, Thanks for the explanation you have provided.I tried setting the width of the tabContentStyleClass attribute of panelTabbedPane component but it decreases the width of the clickable area in the tab but not the size of the tab itself. I cannot reduce the

According to TLD or attribute directive in tag file, attribute value does not accept any expressions

2007-04-24 Thread netfish
Hello, I'm sure i'm missing something basic here. I have a servlet that puts an ArrayList into session say EmployeeList and this is my JSF snippet.. c:forEach var='item' items='${EmployeeList}' tr tdh:commandLink action='#{empInfo.getEmployeeInfo}'

Re: According to TLD or attribute directive in tag file, attribute value does not accept any expressions

2007-04-24 Thread Mike Kienenberger
You might be better off doing something like this: t:dataList var=item value=#{EmployeeList} tr td h:commandLink action='#{empInfo.getEmployeeInfo}' f:verbatim#{item.name}/f:verbatim f:param name=empId value=#{item.id}/

floatingPane did not show up

2007-04-24 Thread Dave
Is there an example of using s:floatingPane? I tried the following, it did not show up on the screen. s:floatingPane constrainToContainer=false displayCloseAction=true displayMinimizeAction=false hasShadow=true resizable=true title=Floating Panel titleBarDisplay=true

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

2007-04-24 Thread Madan Narra
Hi Sam, I had a case earlier to the same what u specified in ur mail. The onChange() event in tc:in/ is called when the focus is lost from that. But if u enter some value in tc:in and directly click on the button then , the button will not get disabled instead ur button action will be called.

h:inputText getter not called after closing the inframe

2007-04-24 Thread Nael Ramadan
Let me give you some background on the my page and its purpose. It high level purpose is to perform an employee search. Specifically, the page enables two types of searches: 1. quick search by entering first and last name (or a part of each). The user sees an h:inputText box for entering

How to navigate from https - http

2007-04-24 Thread Joost Schouten
Hi, How can I specify, in a navigation-rule or programmatically in an action, that the response URL needs to be https or http? I use the s:form to specify scheme=http(s) but would like to have control over this in the navigation-rules or the backing bean actions. Any pointers? Thank you, Joost