Re: Jscookmenu and trinidad rendering

2009-07-06 Thread Bruno Aranda
Hi, Is it just the jscookcomponent or any tomahawk component that is not rendered? If that is the case you may be missing the tomahawk taglib [1]. Cheers, Bruno [1] http://wiki.apache.org/myfaces/Use_Facelets_with_Tomahawk 2009/7/6 Dj Apal [GR] dja...@gmail.com: Hello. I'm developing a

Re: Jscookmenu/trinidad problem

2008-08-05 Thread Walter Mourão
Hi Nate, I don't use jscookmenu but I think your problem is related with some kind of state saved by jscookmenu when the user clicks the menu link. Maybe there is a way to intercept the click in jscookmenu and execute the validation/confirmation at that time. On Mon, Aug 4, 2008 at 8:37 PM,

RE: Jscookmenu/trinidad problem

2008-08-05 Thread Perkins, Nate-P63196
recipient, please contact the sender by reply email and destroy all copies of the original message. From: Walter Mourão [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2008 4:08 AM To: MyFaces Discussion Subject: Re: Jscookmenu/trinidad problem Hi

Re: Jscookmenu/trinidad problem

2008-08-05 Thread Walter Mourão
] *Sent:* Tuesday, August 05, 2008 4:08 AM *To:* MyFaces Discussion *Subject:* Re: Jscookmenu/trinidad problem Hi Nate, I don't use jscookmenu but I think your problem is related with some kind of state saved by jscookmenu when the user clicks the menu link. Maybe there is a way to intercept

Re: JsCookMenu - own themes

2008-01-29 Thread Gerald Müllan
Hi, you can specify your own Theme via the following: theme=ThemeOffice styleLocation=/css/jscookmenu/ Just create the dir /ThemeOffice under jscookmenu and place theme.css in it (copy from default theme.css). This should work. cheers, Gerald -- http://www.irian.at Your JSF powerhouse -

RE: jscookmenu with layout=vbl using IE6

2007-10-10 Thread Mathew Tucker
Just in case anyone else is encountering the same problem, the solution appears to be that a capital 'L' must be used in the layout attribute: t:jscookMenu layout=vbL... This fixes the problem so that all submenus now hang left. This sounds like a bug, or at least a peculiarity concerning

Re: jscookMenu target attribute

2007-07-24 Thread Ken McArthur
Found answer in another posting: t:navigationMenuItem itemLabel=home action='javascript:window.open (/smile/p.xhtml,_self)'/ Thanks, Ken On 7/24/07, Ken McArthur [EMAIL PROTECTED] wrote: It would seem normal to have a link in a dropdown menu to a url (i.e. not an action but http://... )

RE: jscookMenu

2007-06-06 Thread Zohner, Michael
Hi, t:navigationMenuItem itemLabel=External link action='javascript:window.open(http://www.xy.net/index.htm,_blank;)'/ Cheers Mcihael -Original Message- From: Peter Dahm [mailto:[EMAIL PROTECTED] Sent: 06 June 2007 10:29 To: users@myfaces.apache.org Subject: jscookMenu Hi, who

Re: JSCookMenu and passing value to manged-bean

2007-05-03 Thread syllepsa
Adrian Mitev-2 wrote: In this form JSCookMenu can't do that. I've created a patch where you can invoke javascript code and invoke action method when the menu is clicked. In the javascript code i set the id of the selected item in a hidden field. See here [1] for more info. [1]

Re: jscookMenu cmDraw is not defined

2007-04-30 Thread omidh
What is to do if these all happans in a portlet??? reagrds Omid Mike Kienenberger wrote: Your web.xml file looks good. However, you don't want to create the directory /faces/myFacesExtensionResource/ This pattern will automatically be used to fetch resources out of the tomahawk jar

Re: jscookMenu cmDraw is not defined

2007-04-30 Thread Mike Kienenberger
the directory /faces/myFacesExtensionResource/, which maybe is not necessary. I?m using tomahawk-1.1.5.jar. I hope someone can help me. thx a lot, cya View this message in context: Re: jscookMenu cmDraw is not defined Sent from the MyFaces - Users mailing list

Re: JSCookMenu and passing value to manged-bean

2007-04-30 Thread Adrian Mitev
In this form JSCookMenu can't do that. I've created a patch where you can invoke javascript code and invoke action method when the menu is clicked. In the javascript code i set the id of the selected item in a hidden field. See here [1] for more info. [1]

Re: JSCookMenu, actionListener and Facelets

2007-04-25 Thread Sam Wang
Try to update the Tomahawk to 1.1.5. luis.roche wrote: Hi all! I would like know if someone had problems with JSCookMenu, actionListener (t:navigationMenuItem) and Facelets. I'm porting an application from JSP/JSF to Facelets and ran into a problem with the menus' actionListeners

Re: jscookMenu cmDraw is not defined

2007-04-23 Thread Mike Kienenberger
Your web.xml file looks good. However, you don't want to create the directory /faces/myFacesExtensionResource/ This pattern will automatically be used to fetch resources out of the tomahawk jar file. I don't know why you are getting an error. Some things that might cause it: 1) You're using

Re: jscookmenu and links (not actions)

2007-03-29 Thread Sorin Silaghi
if you just want a static URL it's easy ... you can put it in the action field. You can even put JS in there so that you get the pop-up you want. The problem appears if you want it to be dynamic. For example if you want to generate the URL in the backing bean you have to find another way. I'm

Re: jscookmenu and links (not actions)

2007-03-29 Thread Mike Kienenberger
Does the attribute take a value binding? Maybe a temporary workaround would be to return javascript that navigates to a url. The pattern to match looks like it might be (/^\w*:A\]\w*:\/\//) != null ) { start-of-string any-number-of-alphanumerics colon A ] any-number-of-alphanumerics colon W

Re: jscookmenu and links (not actions)

2007-03-29 Thread Sorin Silaghi
from what I've seen if you put any EL in the action field it will try to use the outcome with jsf's navigation system... so I don't think any JS would work like that.. and there is not much you can do about it because you would have to specify if what you are returning from the backing bean is to

Re: jscookmenu and links (not actions)

2007-03-29 Thread Simon Kitching
Thanks to both of you for your help. I've got things working now, and have updated the wiki docs: http://wiki.apache.org/myfaces/Dynamic_Menus_with_JSCookMenu As noted there, encoding a url into the action field does work - but only when the url is absolute. So instead I used

Re: jscookmenu and links (not actions)

2007-03-29 Thread Mike Kienenberger
On 3/29/07, Simon Kitching [EMAIL PROTECTED] wrote: Mike wrote: (/^\w*:A\]\w*:\/\//) != null ) { start-of-string any-number-of-alphanumerics colon A ] any-number-of-alphanumerics colon W Almost; format matched is: menu-id :A] protocol://url where :A] is a literal used as

Re: jscookMenu with outputLink?

2007-03-22 Thread Sorin Silaghi
is there any way of doing this dynamically ? ... I have tried returning a link from the backing bean but it doesn't work... On 2/1/07, Ingmar Lötzsch [EMAIL PROTECTED] wrote: correction Set action to javascript:window.open('http://...', '_blank'). In this case the target/form name is

Re: jscookMenu doesn't work with Shale validator

2007-02-27 Thread Cagatay Civici
Hi, Not sure but maybe you can try calling shale's function manually using onclick attribute of jscookmenu's menuitem. Cagatay On 2/27/07, Juergen Kudla [EMAIL PROTECTED] wrote: hi, I'm using the shale client validation but i noticed that it doesn't work with the jscookMenu. for using the

Re: jscookMenu doesn't work with Shale validator

2007-02-27 Thread Adrian Mitev
Cagatay, are you sure that jscookmenu supports onclick? 2007/2/27, Cagatay Civici [EMAIL PROTECTED]: Hi, Not sure but maybe you can try calling shale's function manually using onclick attribute of jscookmenu's menuitem. Cagatay On 2/27/07, Juergen Kudla [EMAIL PROTECTED] wrote: hi, I'm

Re: jscookMenu doesn't work with Shale validator

2007-02-27 Thread Juergen Kudla
it dosn't support onclick :( but you can tell him the javascript location with javascriptLocation. So I'll try to change the javascript. In the js MyFacesHack.js it calls dummyForm.submit(); and make him call the validator script first. On 2/27/07, Adrian Mitev [EMAIL PROTECTED] wrote: Cagatay,

Re: JSCookMenu problems with myfaces 1.1.5 and tomahawk 1.1.4

2007-02-22 Thread Mikael Andersson
Had another look at the compatibility matrix, which seems to have been updated recently, and see that the versions I use don't play well together. Wil try tomahawk 1.1.5 snapshot. - Mike On 23/02/07, Mikael Andersson [EMAIL PROTECTED] wrote: Hi, is anyone running the configuration in the

Re: jscookmenu

2007-02-04 Thread Pierre Raoul
Paul, Sorry for this very late answer. I am not sure I understand you answer. Are you saying the HTML generated by t:jscookMenu is missing input type=hidden name=jscook_action /? The code which works is: ?xml version=1.0? !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN

Re: JSCookMenu/navigationMenuItem doesn't bypass the validation in Tomahawk 1.1.5 snapshot

2007-02-02 Thread Costa Basil
I set the immediate attribute to true for the jscookmenu and it works. Costa Basil [EMAIL PROTECTED] wrote: I upgraded from MyFaces 1.1.1 to MyFaces 1.1.5 and now the jscook menu items do not bypass the validation anymore? Any suggestion on how can I fix this? Thank you

Re: jscookMenu with outputLink?

2007-02-01 Thread Ingmar Lötzsch
correction Set action to javascript:window.open('http://...', '_blank'). In this case the target/form name is interpreted as target. should be Set action to javascript:window.open('http://...', '_blank'). In this case the target/form name is ignored.

Re: jscookMenu with outputLink?

2007-02-01 Thread Ingmar Lötzsch
I'am using Tomahawk 1.1.3 and I'am not a developper of MyFaces. My menu is created dynamically in PageBean because it depends on permissions and developement progress. That means that the NavigationMenuItem objects were not declared in JSP. When you look at MyFacesHack.js you find 3 possibilities

Re: jscookmenu

2007-01-31 Thread Ingmar Lötzsch
I'am using JSCookMenu of Tomahawk 1.1.3 in a Studio Creator 2.1 project with Sun RI 1.1_01. I have to add input type=hidden name=jscook_action / to JSP too. Another bug is maybe in the Renderer. When I use both action methods and action listeners in the same menu and click on a action link, the

Re: jscookmenu

2007-01-30 Thread Pierre Raoul
Paul, I asked a similar question [1]. I suspect their is a bug because the action is not called when the menu item is clicked. I do not think you want the action called when the menu item is generated, which would occur when the EL is evaluated. Thank you for your reply. I found the

Re: jscookmenu

2007-01-30 Thread Paul Spencer
Pierre, I am not sure I understand you answer. Are you saying the HTML generated by t:jscookMenu is missing input type=hidden name=jscook_action /? Can you open an issue and submit a patch. Paul Spencer Pierre Raoul wrote: Paul, I asked a similar question [1]. I suspect their is a bug

Re: jscookmenu

2007-01-29 Thread Paul Spencer
Pierre, I asked a similar question [1]. I suspect their is a bug because the action is not called when the menu item is clicked. I do not think you want the action called when the menu item is generated, which would occur when the EL is evaluated. Paul Spencer

Re: jscookMenu unsuccessful

2006-12-18 Thread Gabriel . Enriquez
If I can get a web.xml copy (just copy the extensions filter configuration) of a successful project where implemented would be great. Thanks [EMAIL PROTECTED] 12/18/2006 12:08 PM Please respond to MyFaces Discussion users@myfaces.apache.org To users@myfaces.apache.org cc Subject

Re: JSCookMenu/navigationMenuItem Immediate attribute?

2006-11-24 Thread mrpantsuit
Are you agreeing with me that JSCookMenu should be changed, or are you informing me that it already skips validation? In my experience, JSCookMenu does NOT skip validation. Perhaps I'm doing something wrong. Gerald Müllan wrote: Hi, I second that. Seems to me skipping validation for a

Re: JSCookMenu/navigationMenuItem Immediate attribute?

2006-11-21 Thread mrpantsuit
I second that. Seems to me skipping validation for a menu item would be the common case. Should be trivial to implement, too. Thanks. James Reynolds-4 wrote: Is there a way to set up the JSCookMenu so that it will bypass validation, as if it had an immediate attribute set to true?

Re: JSCookMenu Stylesheet and Facelets Problem

2006-09-15 Thread Murat Hazer
I had the same problem and following jscookmenu definition solved my problem... t:jscookMenu layout=vbr theme=ThemeOffice org.apache.myfaces.STYLE_LOCATION=/faces/theme/jscookmenu/ t:navigationMenuItems value=#{navigationMenu.menu} / /t:jscookMenuregardsOn 9/14/06, Tom Innes [EMAIL

RE: JSCookMenu Stylesheet and Facelets Problem

2006-09-15 Thread Tom Innes
:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 3:41 AM To: MyFaces Discussion Subject: Re: JSCookMenu Stylesheet and Facelets Problem I had the same problem and following jscookmenu definition solved my problem... t:jscookMenu layout=vbr theme=ThemeOffice org.apache.myfaces.STYLE_LOCATION

Re: JSCookMenu Stylesheet and Facelets Problem

2006-09-15 Thread Murat Hazer
15, 2006 3:41 AM To: MyFaces Discussion Subject: Re: JSCookMenu Stylesheet and Facelets Problem I had the same problem and following jscookmenu definition solved my problem... t:jscookMenu layout=vbr theme=ThemeOffice org.apache.myfaces.STYLE_LOCATION=/faces/theme/jscookmenu

RE: JSCookMenu Stylesheet and Facelets Problem

2006-09-15 Thread Tom Innes
differently. Thanks for the help, Tom -Original Message- From: Murat Hazer [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 11:45 AM To: MyFaces Discussion Subject: Re: JSCookMenu Stylesheet and Facelets Problem I put all of the images, _javascript_s, css's to the overrriden

Re: jscookMenu set up

2006-08-16 Thread Mike Kienenberger
On 7/17/06, Leyzerzon, Simeon [EMAIL PROTECTED] wrote: filter-mapping filter-nameMyFacesExtensionsFilter/filter-name servlet-nameFaces Servlet/servlet-name /filter-mapping filter-mapping

Re: JSCookMenu roadmap inquiry - Please respond!!

2006-08-01 Thread Cosma Colanicchia
Simon, the problem with that patch is that most of the changes it takes are already been applied into the source code another commit, so it would likely cause conflicts / compile failures / unexpected behaviours. I have not time to look into this now.. the following patch may fix this problem,

RE: JSCookMenu roadmap inquiry - Please respond!!

2006-08-01 Thread Leyzerzon, Simeon
, August 01, 2006 3:31 AM To: MyFaces Discussion Subject: Re: JSCookMenu roadmap inquiry - Please respond!! Simon, the problem with that patch is that most of the changes it takes are already been applied into the source code another commit, so it would likely cause conflicts / compile failures

Re: JSCookMenu roadmap inquiry - Please respond!!

2006-08-01 Thread Mike Kienenberger
On 8/1/06, Leyzerzon, Simeon [EMAIL PROTECTED] wrote: Thanks for the code, looks like JSCookMenu development is a moving target, and since I can't even get to the source, I'd need to either wait or chose some alternative approach...It'a a pity... This wiki page explains how to get the source

Re: JSCookMenu and linkDummyForm?

2006-07-31 Thread Cosma Colanicchia
If you are using Trinidad, you should download the latest sources to use JSCookMenu. Cosma 2006/7/31, [EMAIL PROTECTED] [EMAIL PROTECTED]: Hello All, I have set up a JSCookMenu to display a Navigation menu but when I click on a menu item my navigation is ignored and I am returned to the

Re: JSCookMenu and linkDummyForm?

2006-07-31 Thread Alex . Trusler
I'm not using Trinidad just MyFaces and Tomahawk. Cosma Colanicchia [EMAIL PROTECTED] 31/07/2006 16:55 Please respond to MyFaces Discussion users@myfaces.apache.org To MyFaces Discussion users@myfaces.apache.org cc Subject Re: JSCookMenu and linkDummyForm? If you

RE: JSCookMenu roadmap inquiry - Please respond!!

2006-07-31 Thread Leyzerzon, Simeon
Are there any instructions on how to apply the available patches on https://issues.apache.org/jira/browse/TOMAHAWK-516. Will these patches be carried over into released code of 1.1.4, or they will be discarded and superceded with other changes? Thanks. Simeon -Original Message- From:

RE: JSCookMenu with Frames

2006-07-28 Thread Leyzerzon, Simeon
and Tomahawk with no Trinidad. Thanks for your help. Simeon -Original Message- From: Cosma Colanicchia [mailto:[EMAIL PROTECTED] Sent: Thursday, July 27, 2006 7:19 PM To: Leyzerzon, Simeon Subject: Re: JSCookMenu with Frames Well, my solution is build upon the Trinidad form component, as I said

RE: JSCookMenu with Frames

2006-07-27 Thread Leyzerzon, Simeon
? Thank you very much in advance. Simeon -Original Message- From: Cosma Colanicchia [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 18, 2006 5:14 PM To: MyFaces Discussion Subject: Re: JSCookMenu with Frames I'm using JSCookMenu and frames, but it is possible thanks to the Trinidad af:form

Re: jscookmenu submenu

2006-07-24 Thread Bruno Aranda
Hi, have a look at this page [1] in the myfaces wiki. Regards, Bruno [1] http://wiki.apache.org/myfaces/Dynamic_Menus_with_JSCookMenu On 7/24/06, Alexandre Jaquet [EMAIL PROTECTED] wrote: Hi, I would like to know how to add dynamically a sub menu like : file file1 file1_1 file1_2 file2

Re: jscookmenu submenu

2006-07-24 Thread Alexandre Jaquet
Geat thanks for the link :) Bruno Aranda wrote: Hi, have a look at this page [1] in the myfaces wiki. Regards, Bruno [1] http://wiki.apache.org/myfaces/Dynamic_Menus_with_JSCookMenu On 7/24/06, Alexandre Jaquet [EMAIL PROTECTED] wrote: Hi, I would like to know how to add dynamically a sub

Re: jscookmenu submenu

2006-07-24 Thread Alexandre Jaquet
This sample doesn't cover my needs I need to have a menu with this structure : FILE FILE1 FILE1_1 FILE1_2 FILE2 Alexandre Jaquet wrote: Geat thanks for the link :) Bruno Aranda wrote: Hi, have a look at this page [1] in the myfaces wiki. Regards, Bruno [1]

Re: jscookmenu submenu

2006-07-24 Thread Alexandre Jaquet
Here is my cover : NavigationMenuItem datas = getMenuNaviagtionItem(UtilGui.getTranslationText(menu_datas), null); datas.add(new NavigationMenuItem(UtilGui.getTranslationText(menu_datas_market), test1,./images/myfaces.gif,true)); datas.add(new

RE: jscookmenu submenu

2006-07-24 Thread Alberto Marquÿffffe9s
Your you create NavigationMenuItem and you add NavigationMenuItem submenu with another one NavigationMenuItemI I put those of menu father in a list and works menuGenericoXML.olistmenuitem . I give back jsp a list oft:jscookMenu id="nav1" layout="hbr" theme="ThemeOffice"

RE: JSCookMenu with Frames

2006-07-18 Thread Leyzerzon, Simeon
Are there any examples of using the JSCookMenu with frames? Is it possible to deal with an issue of the menu not displaying onto another frame? Thank you, Simeon -Original Message-From: arti [mailto:[EMAIL PROTECTED]Sent: Wednesday, March 15, 2006 12:09 PMTo:

Re: JSCookMenu with Frames

2006-07-18 Thread Cosma Colanicchia
I'm using JSCookMenu and frames, but it is possible thanks to the Trinidad af:form. The Trinidad form has a targetFrame attribute that allows actions results to be loaded in a window/frame different from itself, so it will be only required to put the JSCookMenu in such a form. Note that I have

RE: jscookMenu set up

2006-07-17 Thread Leyzerzon, Simeon
Discussion Subject: Re: jscookMenu set up Make sure the extension filter is defined in web.xml. http://myfaces.apache.org/tomahawk/extensionsFilter.html Paul Spencer Leyzerzon, Simeon wrote: When comparing the 'view source' from the page in my application and the page of the jscookmenu.jsf

RE: jscookMenu set up

2006-07-17 Thread Leyzerzon, Simeon
: RE: jscookMenu set up Paul, Thanks for replying. I've added the filter as described in this article, but still the menu doesn't display. Anything else I could be missing? Regards, Simeon -Original Message- From: Paul Spencer [mailto:[EMAIL PROTECTED] Sent: Saturday, July 15, 2006 9

RE: jscookMenu set up

2006-07-17 Thread Leyzerzon, Simeon
Discussion' Subject: RE: jscookMenu set up Paul, Thanks for replying. I've added the filter as described in this article, but still the menu doesn't display. Anything else I could be missing? Regards, Simeon -Original Message- From: Paul Spencer [mailto:[EMAIL PROTECTED] Sent: Saturday

Re: jscookMenu set up

2006-07-15 Thread Paul Spencer
: RE: jscookMenu set up I've found this link http://myfaces.apache.org/tomahawk/jscookmenu.html with configuration instructions saying that some css files and scripts need to be added into the jscookmenu directory, but this directory is not present in the simple.war distributed with myFaces

RE: jscookMenu set up

2006-07-14 Thread Leyzerzon, Simeon
I've found this link http://myfaces.apache.org/tomahawk/jscookmenu.html with configuration instructions saying that some css files and scripts need to be added into the jscookmenu directory, but this directory is not present in the simple.war distributed with myFaces. Where could these be

Re: JScookmenu gif not found

2006-07-13 Thread Mike Kienenberger
I fixed a problem like this at the end of 2005. (Probably after MyFaces 1.1.1.). I'd recommend trying the most recent version of MyFaces/Tomahawk to make sure you've picked up those bug fixes. On 7/13/06, Boeckli, Dominique [EMAIL PROTECTED] wrote: Hi Folks, I have following problem with the

RE: JScookmenu gif not found

2006-07-13 Thread Boeckli, Dominique
Discussion Subject: Re: JScookmenu gif not found I fixed a problem like this at the end of 2005. (Probably after MyFaces 1.1.1.). I'd recommend trying the most recent version of MyFaces/Tomahawk to make sure you've picked up those bug fixes. On 7/13/06, Boeckli, Dominique [EMAIL PROTECTED] wrote

Re: JScookmenu gif not found

2006-07-13 Thread Mike Kienenberger
Thanks for your reply. I used tomahawk-1.1.2.jar, myfaces-impl-1.1.3.jar, myfaces-api-1.1.3.jar. I'm going to try Tomahawk 1.1.3. Greetings Dominique -Original Message- From: Mike Kienenberger [mailto:[EMAIL PROTECTED] Sent: Donnerstag, 13. Juli 2006 20:28 To: MyFaces Discussion Subject: Re

RE: JScookmenu gif not found

2006-07-13 Thread Boeckli, Dominique
To: MyFaces Discussion Subject: Re: JScookmenu gif not found Yes, you're going to have issues using non-similar release versions prior to version 1.1.3. Tomahawk and myfaces libraries can only be mix-and-matched from version 1.1.3 onward. So you cannot use 1.1.2 and 1.1.3 together. On 7/13/06, Boeckli

RE: JScookmenu gif not found

2006-07-13 Thread Boeckli, Dominique
[mailto:[EMAIL PROTECTED] Sent: Donnerstag, 13. Juli 2006 20:57 To: MyFaces Discussion Subject: Re: JScookmenu gif not found Yes, you're going to have issues using non-similar release versions prior to version 1.1.3. Tomahawk and myfaces libraries can only be mix-and-matched from version 1.1.3

Re: jscookmenu trouble (again)

2006-06-30 Thread Alexandre Jaquet
Solved it was a compilation error :) Alexandre Jaquet wrote: Hi, I forgot the work I've done this last two days :'( and I'm been trying to use again jscookmenu. I've created a managed bean called NavigationMenu, placed it into the faces-config like this way : managed-bean

RE: jscookMenu doesn't appear

2006-06-29 Thread Strittmatter, Stephan
Hi Alexandre, I think you should place the menu within the view-tag instead of placing it in the head. content in the head is not rendered in the browsers page. There are only meta date. Only the title is shown as page title. Regards, Stephan http://jroller.com/page/stritti -Original

Re: jscookMenu doesn't appear

2006-06-29 Thread Alexandre Jaquet
Have you a working exemple ? It can really help me ! Regards Strittmatter, Stephan wrote: Hi Alexandre, I think you should place the menu within the view-tag instead of placing it in the head. content in the head is not rendered in the browsers page. There are only meta date. Only the title

RE: jscookMenu doesn't appear

2006-06-29 Thread Strittmatter, Stephan
Sorry, no. I currently fighting with jscookmenu within a portlet :-/ which does also not work. -Original Message- From: Alexandre Jaquet [mailto:[EMAIL PROTECTED] Sent: Thursday, June 29, 2006 10:10 AM To: MyFaces Discussion Subject: Re: jscookMenu doesn't appear Have you

Re: jscookMenu doesn't appear

2006-06-29 Thread Alexandre Jaquet
: Thursday, June 29, 2006 10:10 AM To: MyFaces Discussion Subject: Re: jscookMenu doesn't appear Have you a working exemple ? It can really help me ! Regards Strittmatter, Stephan wrote: Hi Alexandre, I think you should place the menu within the view-tag instead of placing

Re: JSCookMenu Theme

2006-06-20 Thread Martin Marinschek
Hi,you'd have to put them in the /resources subfolder of the jscookmenu-component class (you can also add them to the jar, should work as well). You can also create a jira-issue, where you apply these patches to. Hopefully there's someone around who'll apply them, then! regards,MartinOn 6/20/06,

Re: jscookMenu renders a button!?

2006-06-12 Thread octoberdan
The taglib in the wiki left out: renderer-typeorg.apache.myfaces.JSCookMenu/renderer-type from the JSCookMenu component decleration. -- View this message in context: http://www.nabble.com/jscookMenu-renders-a-button%21--t1775107.html#a4832606 Sent from the MyFaces - Users forum at Nabble.com.

RE: JsCookMenu and CSS

2006-04-12 Thread Lindholm, Greg
Take a look at this thread http://thread.gmane.org/gmane.comp.jakarta.myfaces.user/16858/focus=1692 1 -Original Message- From: benJsf [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 12, 2006 2:33 PM To: users@myfaces.apache.org Subject: JsCookMenu and CSS Hi, I've finally got the

RE: JsCookMenu and CSS

2006-04-12 Thread benJsf
thanks I think that'll fix my problem. -Ben -- View this message in context: http://www.nabble.com/JsCookMenu-and-CSS-t1439790.html#a3888663 Sent from the MyFaces - Users forum at Nabble.com.

Re: jscookmenu and navigation menu items

2006-04-03 Thread Mert Çalışkan
xml would be suitable for this.You can digest the xml file with commons-digester and get the menu info easily. In one of my previous projects we used db to persist menu info. Recursive functions didn't interfere our speed hence we had submenus with only one depth. And commiting menu changes on db

RE: jscookmenu and custom themes in 1.1.1

2006-03-27 Thread Lindholm, Greg
Yes I have a custom theme working, here are the steps (cut and pasted from an earlier post). I'm using Tomahawk and MyFaces release 1.1.1 and trying to create a custom theme for jscookmenu. I've extract all the files from org.apache.myfaces.custom.navmenu.jscookmenu.resource.ThemeOffice to

Re: JSCookMenu not rendering on first entry to JSF [SEC=UNCLASSIFIED]

2006-03-25 Thread Brian Woolf
check your web.xml,custom filter must after extend filer. -- View this message in context: http://www.nabble.com/JSCookMenu-not-rendering-on-first-entry-to-JSF-SEC%3DUNCLASSIFIED--t1051544.html#a3586605 Sent from the MyFaces - Users forum at Nabble.com.

Re: jscookmenu and custom themes in 1.1.1

2006-03-25 Thread Murat Hazer
You should you stylelocation property of the t:jscookmenu tag.t:jscookMenu layout=vbr theme=ThemeOffice styleLocation=Regards On 3/25/06, Brian Woolf [EMAIL PROTECTED] wrote: hi:Does anyone know, how tousing custom themes for the jscookmenu componentin myFacesrelease.1.1.1? My pages worked

RE: jscookMenu and custom theme

2006-03-16 Thread arti
Hi I have another problem with JSCookMenu. I am using frames. Can someone tell me how to change the javascript in JSCookMenu to use frames? -Original Message- From: Lindholm, Greg [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 15, 2006 10:31 PM To: MyFaces Discussion Subject:

Re: jscookMenu and onclick()?

2006-03-03 Thread Onur Tokan
You can tweek the js code in tomahawk.jar, That's what I done Regards, Onur On 3/3/06, Martin Marinschek [EMAIL PROTECTED] wrote: It doesn't afaik. Thomas, correct me if I'm wrong. regards, Martin On 3/2/06, Adam Brod [EMAIL PROTECTED] wrote: By original, do you mean the raw

Re: jscookMenu and onclick()?

2006-03-02 Thread Dennis Byrne
Hello Adam, Perhaps the original jsCookMenu would be your first choice. Dennis Byrne -Original Message- From: Adam Brod [mailto:[EMAIL PROTECTED] Sent: Thursday, March 2, 2006 04:55 PM To: 'MyFaces Discussion' Subject: jscookMenu and onclick()? Hi- Is is possible for jsCookMenu to

Re: jscookMenu and onclick()?

2006-03-02 Thread Adam Brod
it as well. If it doesn't support it, then I understand. Thanks, Adam Brod Product Development Team Dennis Byrne [EMAIL PROTECTED] 03/02/2006 04:58 PM Please respond to MyFaces Discussion users@myfaces.apache.org To MyFaces Discussion users@myfaces.apache.org cc Subject Re

Re: JSCookmenu javascript/onclick

2006-02-21 Thread Onur Tokan
Try to over ride the jscook menu external js: -Find the js in tomahawk.jar and change it for your needs, That's the way I do it Regards, Onur On 2/22/06, Nicklas Karlsson [EMAIL PROTECTED] wrote: Hello, Is there a way to get an onclick attribute to a JSCookmenu menu item or is it limited

Re: JSCookMenu and SUN's RI

2006-02-10 Thread Daniel Loebbe
Done. http://issues.apache.org/jira/browse/MYFACES-1105 Bye, Daniel 2006/2/9, Mike Kienenberger [EMAIL PROTECTED]: Daniel,It'd be best if you opened the issue since you have the bestunderstanding of the problem and can provide examples showing the problem.(You also are the one who's most

Re: JSCookMenu and f:param

2006-02-09 Thread Thomas Spiegl
that works. thanks. Richard -Original Message- From: Thomas Spiegl [mailto:[EMAIL PROTECTED] Sent: Tue 2/7/2006 6:09 PM To: MyFaces Discussion Subject: Re: JSCookMenu and f:param You can choose between 2 tags to create the menu tree: a) t:navigationMenuItem

Re: JSCookMenu and SUN's RI

2006-02-09 Thread Daniel Loebbe
I am quite sure that the extension filter stuff is not the reason for the problem concerning the jsCookMenu and Suns RI. All _javascript_ and CSS stuff is loaded properly. So, can you please open an issue concerning this? Thanks Bye, Daniel 2006/2/8, Mike Kienenberger [EMAIL PROTECTED]:

Re: JSCookMenu and SUN's RI

2006-02-09 Thread Mike Kienenberger
Daniel, It'd be best if you opened the issue since you have the best understanding of the problem and can provide examples showing the problem. (You also are the one who's most interested in seeing a solution). I don't know anything about jsCookMenu -- I've never used it. On 2/9/06, Daniel

Re: JSCookMenu and SUN's RI

2006-02-08 Thread Daniel Loebbe
Any news concerning this issue? The last nightly builds did not contain a correction. Bye, Daniel 2006/2/1, Daniel Loebbe [EMAIL PROTECTED]: Great to hear this. Thanks a lot! Looking forward, Daniel 2006/2/1, Martin Marinschek [EMAIL PROTECTED]: Yeah, there is YAB (yet another bug) open on

Re: JSCookMenu and SUN's RI

2006-02-08 Thread Martin Marinschek
Hi Daniel, yes you do: you'll need to add the /faces/* mapping as well - see the examples. regards, Martin On 2/8/06, Daniel Loebbe [EMAIL PROTECTED] wrote: Hi Martin, these are my filter settings: filter filter-nameMyFacesExtensionsFilter /filter-name filter-class

Re: JSCookMenu and f:param

2006-02-08 Thread Richard Frazer
Frazer [EMAIL PROTECTED] Reply-To: MyFaces Discussion users@myfaces.apache.org Date: Tue, 7 Feb 2006 20:21:58 -0500 To: MyFaces Discussion users@myfaces.apache.org Subject: RE: JSCookMenu and f:param I actually had it like your example a, except instead of an action, I defined

Re: JSCookMenu and f:param

2006-02-07 Thread Richard Frazer
Title: Re: JSCookMenu and f:param Thanks for your response. I downloaded the nightly yesterday and am seeing strange behavior. I tried adding an action listener to the navigationMenuItem and the event I get in my listener gives me the HtmlCommandJSCookMenu object as the source instead

Re: JSCookMenu and f:param

2006-02-07 Thread Thomas Spiegl
:25:46 -0200 To: MyFaces Discussion users@myfaces.apache.org Subject: Re: JSCookMenu and f:param not. You need to use the nightly build of navigationMenuItem, such has actionListener feature. On 2/6/06, Richard Frazer [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Is f:param

Re: JSCookMenu and f:param

2006-02-07 Thread Thomas Spiegl
: Re: JSCookMenu and f:param ty richard - this is a bug. I just fixed this issue. The item's value will be returned again instead of the label. I think most of us are using NavigationMenuItem(s) to create the entire menu tree. NavigationMenuItem is not an UIComponent, that's why it can't

RE: JSCookMenu and f:param

2006-02-07 Thread Richard Frazer
. Richard -Original Message- From: Thomas Spiegl [mailto:[EMAIL PROTECTED] Sent: Tue 2/7/2006 6:09 PM To: MyFaces Discussion Subject: Re: JSCookMenu and f:param You can choose between 2 tags to create the menu tree: a) t:navigationMenuItem itemLabel=... action=... / This tag creates

Re: JSCookMenu and f:param

2006-02-06 Thread Eduardo Dudu Ivan Pichler
not.You need to use the nightly build of navigationMenuItem, such has actionListener feature.On 2/6/06, Richard Frazer [EMAIL PROTECTED] wrote:Is f:param supported in tandem with jsookMenu/navigationMenuItem?If not, is there a way to achieve the same result?thanks.-- Dudu `P

Re: JSCookMenu and Facelets issue

2006-02-02 Thread Thomas Gaudin
I had the same problem and I think it was related to the extension filter mapping. If you really can't fix it you could have a look at this sample app : http://www.thogau.net/appfuse-facelets it uses a JSCookmenu with facelets so you can check the difference between the 2 configurations. hope

Re: JSCookMenu and Facelets issue

2006-02-02 Thread Mikael Andersson
Hi Matt, I have the exact same problem you do, if you manage to sort it out please make a post about how you did it. Cheers, MikaelOn 02/02/06, Matt Fury [EMAIL PROTECTED] wrote: Hi All,I've searched through the archives of the mailing listand could only find a few questions and few answersabout

Re: JSCookMenu and Facelets issue

2006-02-02 Thread Matt Fury
Ok, apparently I had it working yesterday but there was server troubles. When I got in this morning and restarted, everything appeared as it was supposed to. Thomas, you are correct, the extension filter mapping and this

Re: JSCookMenu not rendering on first entry to JSF [SEC=UNCLASSIFIED]

2006-02-02 Thread Dennis Byrne
Are you using a nightly build? I saw something similar to this w/ one of the other controls but haven't had the time to look into it. Dennis Byrne -Original Message- From: Haesler, Paul [mailto:[EMAIL PROTECTED] Sent: Thursday, February 2, 2006 11:00 PM To: users@myfaces.apache.org

RE: JSCookMenu not rendering on first entry to JSF [SEC=UNCLASSIFIED]

2006-02-02 Thread Haesler, Paul
To: MyFaces Discussion Subject: Re: JSCookMenu not rendering on first entry to JSF [SEC=UNCLASSIFIED] Are you using a nightly build? I saw something similar to this w/ one of the other controls but haven't had the time to look into it. Dennis Byrne -Original Message- From: Haesler, Paul [mailto

  1   2   >