Difference between revisions of "Adding Related Custom Fields into Advanced Search Module"

From JReviews Documentation
Jump to: navigation, search
(Created page with "If you are not familiar with Advanced Search Module, take a look at these 2 articles first: * Advanced Search Module * [[Creating custom search forms with the Advanced Search...")
 
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
* [[Advanced Search Module]]
 
* [[Advanced Search Module]]
 
* [[Creating custom search forms with the Advanced Search module]]
 
* [[Creating custom search forms with the Advanced Search module]]
 
  
 
When  you add the related custom fields to the Advanced Search Module, the  parent field is always visible, and child fields appear only after  parent has been selected.
 
When  you add the related custom fields to the Advanced Search Module, the  parent field is always visible, and child fields appear only after  parent has been selected.
  
Each custom field must be added with its own "jr_fieldDiv" container, for example:
+
Each custom field must be added with its own "jrFieldDiv" container, for example:
  
 
<source lang="php">
 
<source lang="php">
<div class="jr_fieldDiv">
+
<div class="jrFieldDiv">
 
     {jr_country_label}: {jr_country}
 
     {jr_country_label}: {jr_country}
 
</div>
 
</div>
Line 15: Line 14:
  
  
And the child fields should have an additional "jr_hidden" class:
+
For child fields, add the "jrHidden" class so the field is hidden when the page loads and until a selection from the control field is made:
  
 
<source lang="php">
 
<source lang="php">
<div class="jr_fieldDiv jr_hidden">   
+
<div class="jrFieldDiv jrHidden">   
 
     {jr_state_label}: {jr_state}
 
     {jr_state_label}: {jr_state}
 
</div>
 
</div>
  
<div class="jr_fieldDiv jr_hidden">   
+
<div class="jrFieldDiv jrHidden">   
 
     {jr_city_label}: {jr_city}
 
     {jr_city_label}: {jr_city}
 
</div>
 
</div>
Line 28: Line 27:
  
  
To show the child fields in the same row as parent field, you'll need to  add "float: left;" to both parent and child fields. You can use a  predefined JReviews class for that, ''jr_floatLeft'':
+
To show the child fields in the same row as parent field, you'll need to  add "float: left;" to both parent and child fields. You can use a  predefined JReviews class for that, ''jrLeft'':
  
 
<source lang="php">
 
<source lang="php">
<div class="jr_fieldDiv jr_floatLeft">
+
<div class="jrFieldDiv jrLeft">
 
     {jr_country_label}: {jr_country}
 
     {jr_country_label}: {jr_country}
 
</div>
 
</div>
  
<div class="jr_fieldDiv jr_hidden jr_floatLeft">   
+
<div class="jrFieldDiv jrHidden jrLeft">   
 
     {jr_state_label}: {jr_state}
 
     {jr_state_label}: {jr_state}
 
</div>
 
</div>
  
<div class="jr_fieldDiv jr_hidden jr_floatLeft">   
+
<div class="jrFieldDiv jrHidden jrLeft">   
 
     {jr_city_label}: {jr_city}
 
     {jr_city_label}: {jr_city}
 
</div>
 
</div>

Latest revision as of 13:02, 26 November 2013

If you are not familiar with Advanced Search Module, take a look at these 2 articles first:

When you add the related custom fields to the Advanced Search Module, the parent field is always visible, and child fields appear only after parent has been selected.

Each custom field must be added with its own "jrFieldDiv" container, for example:

<div class="jrFieldDiv">
    {jr_country_label}: {jr_country}
</div>


For child fields, add the "jrHidden" class so the field is hidden when the page loads and until a selection from the control field is made:

<div class="jrFieldDiv jrHidden">  
    {jr_state_label}: {jr_state}
</div>
 
<div class="jrFieldDiv jrHidden">  
    {jr_city_label}: {jr_city}
</div>


To show the child fields in the same row as parent field, you'll need to add "float: left;" to both parent and child fields. You can use a predefined JReviews class for that, jrLeft:

<div class="jrFieldDiv jrLeft">
    {jr_country_label}: {jr_country}
</div>
 
<div class="jrFieldDiv jrHidden jrLeft">  
    {jr_state_label}: {jr_state}
</div>
 
<div class="jrFieldDiv jrHidden jrLeft">  
    {jr_city_label}: {jr_city}
</div>


The fields will look like this:

AdvSearchModuleFieldRelations.png