This content has been marked as final. 
    
Show                 3 replies
    
- 
        1. Re: rich:suggestionbox and on click eventilya_shaikovsky Jan 5, 2009 5:55 AM (in response to traviskds)Maybe try Event.stop(event) on elements which should activate your custom JS logic to stop event processing after.? 
- 
        2. Re: rich:suggestionbox and on click eventtraviskds Jan 5, 2009 6:05 AM (in response to traviskds)Thanks Ilya. Was just about to try somethng like that. Was reading about event order (capturing and bubbling) - http://www.quirksmode.org/js/events_order.html 
- 
        3. Re: rich:suggestionbox and on click eventtraviskds Jan 5, 2009 9:02 PM (in response to traviskds)I don't seem to be able to observe an event within the suggestionbox. For example I have a icon which I have given an id called "nav_next" 
 Event.observe('formName:emailField:suggestion:nav_next', 'click', dosomething);
 function dosomething(e) {
 Event.stop(e);
 alert('Event stopped');
 }
 Note that I am using JBoss seam. Hence the long element ids..
 If I observe other elements on the page, it works. But when its within the suggestion box only I have this issue.
 any ideas?
 
    