Advertisement

08.25.2008 at 08:58AM PDT, ID: 23675617 | Points: 500
[x]
Attachment Details

Prototype autopopulate select list...almost there...

Asked by bloggermouth in JavaScript, JavaScript Frameworks

Tags:

The following code is sort of working except that it updates the select box with a bunch of 'undefined' entries.

The following is the result of the query used to populate the select list:

[{ optionValue:3, optionDisplay: 'Albert Road' }, { optionValue:1, optionDisplay: 'Apple Grove' }]Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
$('trucks').observe('keyup', function loadLocations() {
      var url = 'inc/findlocation.php';
      var params = 'cust_id=' + $F('custid');
      var ajax = new Ajax.Request(url,{method: 'get',parameters:params,
	  onSuccess: function(res){
        var j = res.responseText.toJSON(), options = '';
        for (var i = 0; i < j.length; i++) {
          options += '<option value="' + j[i].optionValue + '">' + j[i].optionDisplay + '</option>';
        }
        $('pickup').update(options);
      }
	  ,onFailure:reportError});
});
 
function reportError() {
      alert('Sorry. There was an error');
}
[+][-]08.25.2008 at 11:29AM PDT, ID: 22307828

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.25.2008 at 02:27PM PDT, ID: 22309398

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.26.2008 at 07:33AM PDT, ID: 22315148

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.26.2008 at 08:12AM PDT, ID: 22315658

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.26.2008 at 08:19AM PDT, ID: 22315733

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.26.2008 at 08:26AM PDT, ID: 22315838

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.26.2008 at 08:38AM PDT, ID: 22315974

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.26.2008 at 08:38AM PDT, ID: 22315976

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.26.2008 at 09:10AM PDT, ID: 22316336

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-42 / EE_QW_2_20070628