Search code examples
radio-buttonoracle-adfjdeveloper

How to bring "Match" word near Match Radio Buttons in ADF


I am working on af:query for Search functionality in ADF. The code for same is given below

<af:query id="qu1" headerText="Search" disclosed="true"  styleClass="quButton" saveButtonText="Save"
          value="#{bindings.SearchByTitleAndAuthor.quDescriptor}" 
          model="#{bindings.SearchByTitleAndAuthor.quModel}" 
          queryListener="#{bindings.SearchByTitleAndAuthor.processQuery}"
          queryOperationListener="#{bindings.SearchByTitleAndAuthor.processQueryOperation}"/>

This provides me a Search region with various fields and 2 radio buttons named as "All" and "Any". My requirement is that the word "Match" should come before the radio button "All". I have checked on different links that the word "Match" comes by default when we use af:query. But, its not coming in my case. Please suggest some ways in which I can get it done. My Jdeveloper version is "Studio Edition Version 11.1.1.7.0".


Solution

  • Check your view object. Ensure that show match all/match any is checked as shown in the screenshot.

    View Criteria

    ===EDIT===

    OP was using custom skin. Causing the issue. After removing the custom skin, the issue went away as suggested.