I have a select element that does a post using jquery on a change event, I was trying to post it to a snippet and get the results back, however it seems that if the snippet is called directly from javascript there will be no notion of the ($modx) object and i can't access the DB using PDO, my code is as follows:

$(document).ready(function() {

    $('#camplist').change(function() {

        $.post('core/components/evoprograms/snippets/register-camp.php?action=getCamp&id=' + $(this).val(), function(data) {
            $("camp-details").show();
            $('.result').html(data);
        });

    });

});

What's the right approach to do it?

-- Regards. Yehia A.Salam

link|improve this question

77% accept rate
If you tell us what the problem is, and maybe post some of the relevant html and php, it would be easier to come up with a solution. :) – Kris Aug 15 '11 at 8:00
the problem is simply doing an AJAX call from the modx front end and reveiveing and the call on the backendm the problem is that I am not able to call the snippet directly from the front end – Yehia A.Salam Aug 15 '11 at 12:04
feedback

2 Answers

$.post('core/components/evoprograms/snippets/register-camp.php

This is not good - you don't want anyone accessing anything under /core/*

Basically there are two ways:

  1. The simplest way - create a resource (without any template) with only your snippet call in it as content (uncached!). then do you $.post to that resource.

  2. the revolution way (cleaner, better) - use your own connector (/assets/components/evoprograms/connector.php). see this for more info. or just copy any existing connector and modify if needed.

link|improve this answer
feedback

you can do it other way like - you can submit the form on an onchange event and give the form action to call that snippet required... for example see the below code:-

<form action="[[!snippetname]]" method="POST">
  <h3>dropdown: 
    <select name="selection" onchange="this.form.submit();">
      <option>select</option>
      <option value="2">all</option>
     </select>
   </h3>
 </form>

and this doesnt need any javascript

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.