Skip Navigation

[Resolved] Loading views with Ajax

This thread is resolved. Here is a description of the problem and solution.

Problem: I would like to call a script that returns a rendered View with AJAX.

Solution: While Views offers the render_view API for PHP, it is not exposed as an AJAX endpoint. Instead, you could use one or more Views to output all the possible content to the page initially, hidden by CSS. Then use JavaScript to show and hide individual pieces of content when you click links on the page.

Relevant Documentation:
https://toolset.com/documentation/programmer-reference/views-api/#render_view

This support ticket is created 6 years, 2 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 - -
13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 - -

Supporter timezone: America/New_York (GMT-04:00)

This topic contains 2 replies, has 2 voices.

Last updated by susanB-3 6 years, 2 months ago.

Assisted by: Christian Cox.

Author
Posts
#614917

Hi Christian, I have been looking at my problem with search filtering and I came up with another solution. To review, I am creating something like this: hidden link

I am creating a template. I have 4 views for my content type with specific filters I am interested in.

My template (simplified) is:

<a href="#" id="nav1">Link 1</a>
<a href="#" id="nav2">Link 2</a>
<a href="#" id="nav3">Link 3</a>
<a href="#" id="nav4">Link 4</a>

<div id="target"> </div>

<script>
$ (document).ready(function () {
$('#nav1').click(function(){
$('#target').load('call view 1');

});
$('#nav2').click(function(){
$('#target').load('call view 2');

});
$('#nav3').click(function(){
$('#target').load('call view 3');

});
$('#nav4').click(function(){
$('#target').load('call view 4');

});

});</script>

I would like to call each view with the specific click.

I can load post / page content this way, can it be done with a view?

#615034

There is not a simple way to directly load AJAX results like this. We offer the following API for rendering a View, but there is no endpoint set up for you to call with AJAX:
https://toolset.com/documentation/programmer-reference/views-api/#render_view

On the other hand, you could use Views to write all the possible content into the page, hidden with CSS. Then show and hide pieces of content when a link is clicked, instead of loading different results with AJAX.

#618518

This isn't pretty yet, but I have a solution: hidden link

My template code, in case someone else is searching for a similar solution:

<div class="wrap">
              
             <a id="myHeader1" href="javascript:showonlyone('newboxes1');" >S Link</a>
             <a id="myHeader2" href="javascript:showonlyone('newboxes2');" >A Link</a>
              <a id="myHeader3" href="javascript:showonlyone('newboxes3');" >W Link</a>
              <a id="myHeader4" href="javascript:showonlyone('newboxes4');" >C Link</a>
  

<p>&nbsp;</p>
 
         
         <div class="newboxes" id="newboxes1" style=" display: block;padding: 5px;  "><?php
 $args = array(
    'title' => 'S Staff'
);
echo render_view( $args );
?></div>
  
         <div class="newboxes" id="newboxes2" style="  display: none;padding: 5px;  "><?php
 $args = array(
    'title' => 'A Staff'
);
echo render_view( $args );
?></div>
  
         <div class="newboxes" id="newboxes3" style="   display: none;padding: 5px;  "><?php
 $args = array(
    'title' => 'W Staff'
);
echo render_view( $args );
?></div>


         <div class="newboxes" id="newboxes4" style="   display: none;padding: 5px;  "><?php
 $args = array(
    'title' => 'C Staff'
);
echo render_view( $args );
?></div>
 
 <p>&nbsp;</p>
 
 
 </div  >

 

<script>
function showonlyone(thechosenone) {
     $('.newboxes').each(function(index) {
          if ($(this).attr("id") == thechosenone) {
               $(this).show(200);
          }
          else {
               $(this).hide(600);
          }
     });
}
</script>

Thanks for helping talk me through this.

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.