search field inside menubar

UI Components for JSF
Post Reply
jhaley
Posts: 8
Joined: 15 May 2012, 16:46

15 May 2012, 17:04

I'm looking for a way to embed a search in a p:menubar. It does render, but when I try to click in the inputText field, the menu collapses. Is there a way to make this work.

Code: Select all

<p:menubar style="z-index: 1000;">
  <p:menuitem>
    <h:panelGrid columns="3" >
      <h:outputText value="search"></h:outputText>
      <h:inputText value="" size="5" onclick="return false;"></h:inputText>
      <h:commandButton value="Go"></h:commandButton>
    </h:panelGrid>
  </p:menuitem>
</p:menubar>

jhaley
Posts: 8
Joined: 15 May 2012, 16:46

15 May 2012, 18:06

Figured it out. I added the following script and changed my inputText to have an id of "textId"

Code: Select all

<script>
        var linkButton = document.getElementById("menuForm:textId");
        
        linkButton.onclick = function(ev){
            ev.preventDefault();
            ev.stopPropagation();
        }
</script>

kukeltje
Expert Member
Posts: 9605
Joined: 17 Jun 2010, 13:34
Location: Netherlands

15 May 2012, 18:33

Thanks for reporting back. Useful answer for others...

eziz
Posts: 33
Joined: 15 Apr 2012, 13:08

15 May 2012, 19:21

we will use indexing when we are searching in the system? Help me
  • Netbeans
    MySql
    JSP and Primefaces

smithh032772
Posts: 6144
Joined: 10 Sep 2011, 21:10

15 May 2012, 20:47

eziz wrote:we will use indexing when we are searching in the system? Help me
Please search google/forums before asking questions. There are so many code examples, blogs, tutorials, etc... 99.99999999% of my questions has been answered by taking this approach.

viewtopic.php?f=3&t=1194
Howard

PrimeFaces 6.0, Extensions 6.0.0, Push (Atmosphere 2.4.0)
TomEE+ 1.7.4 (Tomcat 7.0.68), MyFaces Core 2.2.9, JDK8
JUEL 2.2.7 | OmniFaces | EclipseLink-JPA/Derby | Chrome

Java EE 6 Tutorial|NetBeans|Google|Stackoverflow|PrimeFaces|Apache

Post Reply

Return to “PrimeFaces”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 50 guests