Re: [Tomahawk 1.1.6] ExtensionFilter throws NoClassDefFoundException when loading page

2007-10-03 Thread Michael Obster
Hi Simon, thank for your answer! Long time it was looking that no other member has interest for that problem... thats another point which is getting you on such a thing somehow desperate ;-). You're right, one of the machines looks like there is s.th. wrong with the classpath, because even w

Re: h:commandButton link

2007-10-03 Thread simon
To generate a plain link that points to another site, use . To send a redirect from an action method, do something like this: public void doSomething() { FacesContext.getCurrentInstance(). getExternalContext().redirect("http://google.de";); } Regards, Simon On Wed, 2007-10-03 a

Re: [Tomahawk 1.1.6] ExtensionFilter throws NoClassDefFoundException when loading page

2007-10-03 Thread simon
Hi Michael, The problem is most likely caused by some clash of libs in the classpath on your machine. There are people who are definitely using this combination, so the problem is specific to your machine, not a JSF12+tomahawk problem in general. And that means that if someone does try to duplica

Re: my jscookmenu is disabled after that i make the firts ajax call

2007-10-03 Thread alvaro tovar
i solved my problem, put in diferent form the jscookmenu and the pprPanelgroup On 10/3/07, alvaro tovar <[EMAIL PROTECTED]> wrote: > > when the jscook menu is disabled, and i click in one of this elements, the > server get the petition, but no change is made in the page, i prove also in > myfaces

Re: h:commandButton link

2007-10-03 Thread wkluge
Hi Andrew, I tried to code the url directly in the navigation handler. I tried several combinations etc. but it does not really work and I guess your right that the navigation should only be used by inter-application navigation! Furthermore I don't understand what you mean with "send a redirect to

Re: my jscookmenu is disabled after that i make the firts ajax call

2007-10-03 Thread alvaro tovar
when the jscook menu is disabled, and i click in one of this elements, the server get the petition, but no change is made in the page, i prove also in myfaces 1.6. On 10/3/07, alvaro tovar <[EMAIL PROTECTED]> wrote: > > before that i make 1 ajax call, the jscookmenu run good, but after that i > us

broken link in wiki

2007-10-03 Thread alvaro tovar
i am understanding what is What is the difference between javax.faces.STATE_SAVING_METHOD client and server? in the faq is broken link, if some one have other link

Re: [Tomahawk 1.1.6] ExtensionFilter throws NoClassDefFoundException when loading page

2007-10-03 Thread Michael Obster
Ok. Solution search in over 3 days. Change to JBOSS JSF 1.2... The result is I get Tomahawk loaded but no t-tag is rendered and no error is present. This is annoying and I will reimplement the software in struts, because this framework runs. Looks like JSF is a topic when a compatible release

my jscookmenu is disabled after that i make the firts ajax call

2007-10-03 Thread alvaro tovar
before that i make 1 ajax call, the jscookmenu run good, but after that i use the pprPanelgroup the jscookmenu stop of run, the link don't make noting, i don't know what happend, is a bug?. i put the , whit out this, the jscook menu don't run, i am using myfaces 1.5, tomahok 1.5, sandbos 1.5 tha

Re: [Trinidad] display dialog programmatically.

2007-10-03 Thread Luka Surija
I have the same problem. It looks like some thing happend with Dialog Framework, because it worked couple months ago. I don't remember any more the version, but I know that worked. Now I must write action="dialog:somedialog" if I want to use Dialog Framework. Use window parameter has no influe

[Trinidad] possible bug in tr:inputListOfValues

2007-10-03 Thread Luka Surija
I've found that tr:inputListOfValues doesn't handle with decimal separator defined in trinidad-config.xml, but only in case of receving value from dialog. For example: I have defined "," for decimal-separator. Value of "7.5" is correctly displayed in tr:inputListOfValues after showing the page

Re: h:commandButton link

2007-10-03 Thread Andrew Robinson
Command button passes the outcome and the action to the navigation handler. If you want it to work with external URLs, you would have to code that into your navigation handler. Instead, the best solution is to send a redirect to the external URL. Navigation really should be reserved for inter-appli

[Trinidad] display dialog programmatically.

2007-10-03 Thread Darren McEntee
Hi, I want to have a dialog popup returned, but programmatically, when I decide whether or not I want to show it, from my ordinary "action" call. This is to show a info/warning dialog instead of navigating like normal. I have a command button with an action and a useWindow parameter like so

Re: [Trinidad] request backed TreeTable

2007-10-03 Thread venkata guddanti
Hi Andrew, I believe this may not have anything to do with change persistence. The selection and the expansion state is part for the component state (SaveState, RestoreState). One possibility is that you use a request scoped bean to bind the selectedRowKeys and disclosedRowKeys attributes via EL.

Re: [Trinidad] tree component - how to open a node programmatically on the Java side?

2007-10-03 Thread venkata guddanti
You can use the disclosedRowKeys attribute on the tree to pre-expand the tree. You are using an array list as children of the tree nodes. These arrayLists are automatically wrapped with a CollectionModel by Trinidad. The Integer index of the row is the rowkey in each of the CollectionModel. The row

h:commandButton link

2007-10-03 Thread Wolfgang
Hi, I can use the action parameter of the h:commandButton to change to another xhtml site. But can I also link to a internet site for example google.de? Cheers Wolfgang

Re: Sharing session with struts

2007-10-03 Thread Simon Kitching
Are you using cookies or query parameter (jsessionid) to keep the http session? If cookies, then perhaps your browser is seeing a different hostname when accessing the JSF pages for some weird reason? In that case, the cookie wouldn't match, so a new session would be created. I haven't used qu

Re: Sharing session with struts

2007-10-03 Thread Mikael Andersson
Just found a property in the Session called authType, wich has the value CLIENT-CERT when accessed from the Struts app and null from JSF. So it seems like it is to do with the security settings, sorry to have bothered you all :) Cheers, Mike On 03/10/2007, Mikael Andersson <[EMAIL PROTECTED]> w

Re: Sharing session with struts

2007-10-03 Thread Mikael Andersson
That is what I thought as well and what is sensible. I need to dig a bit deeper and see what is going on. Currently what I've tested is to put a break point in a old class which retrieves a users id from the http session. When accessing a struts page, I see one session. But when accessing a jsf p

Re: Sharing session with struts

2007-10-03 Thread Simon Kitching
Mikael Andersson <[EMAIL PROTECTED]> schrieb: > Hi > > I'm investigation how to integrate JSF into a large Struts based application > and one thing which I need to do is access attributes put into the http > session by Struts (homegrown security framework). > > I first thought that the Sessi

Sharing session with struts

2007-10-03 Thread Mikael Andersson
Hi I'm investigation how to integrate JSF into a large Struts based application and one thing which I need to do is access attributes put into the http session by Struts (homegrown security framework). I first thought that the Session would be the same for both applications but discovered that th

Re: Getting Error While retreiving Hibernate Query Result in View Layer Using Trinidad

2007-10-03 Thread Alonso Isidoro Roman
could you paste Caused by in expeption? 2007/10/3, Vasista <[EMAIL PROTECTED]>: > > > Hi All, > > I am doing my application with Hibernate, Spring and Trinidad. I am > using key="hibernate.query.factory_class"> > org.hibernate.hql.classic.ClassicQueryTranslatorFactory > property in my spring

Getting Error While retreiving Hibernate Query Result in View Layer Using Trinidad

2007-10-03 Thread Vasista
Hi All, I am doing my application with Hibernate, Spring and Trinidad. I am using org.hibernate.hql.classic.ClassicQueryTranslatorFactory property in my spring-context.xml file {Spring Configuration file} For Hibernate Query to work with Trinidad. The other factory class property org.hiber

[Trinidad] How to set selected item in navigationTree from bean method

2007-10-03 Thread Tomek GoĊ‚embiewski
Hello. I'm trying to set focus on selected node of navigationTree from backing bean. I reserach all google and found nothing. Im using in nodeStamp. I tried to set selected property on item to true with no effect. I can open and close tree item with disclosedRowKeys but i don't know how to set

Using Myfaces with Glassfish V2 Final

2007-10-03 Thread Brody Wong
Has anyone successfully using Myfaces with Glassfish V2? If yes, can you please tell me how to do it? Thanks in advance. P.S.: I have tried the instructions at the following link but could not successfully run my application with Myfaces. http://blogs.sun.com/chengfang/date/20060322 -- View th

Post request encoding problem

2007-10-03 Thread Rene Pirringer
Hi, in the project I'm working on we have the problem that when we try to submit a form that contains german umlauts the string in the backing bean is not encoded correctly. All our sites are in UTF-8 an in the post request the parameters are also send url encoded in UTF-8. I debugged this

Detecting enabled javascript and cookies with JSF

2007-10-03 Thread Novaree
Hi guys, I need some cool way to detect if javascript and cookies are enabled in a users browser. I've tried with basic javascript to no avail. Tried encapsulating it with to no avail. How do I do this? Best regards, Casper Helenius, Denmark -- View this message in context: http://www.nabb