Link to home
Start Free TrialLog in
Avatar of splanton
splantonFlag for United Kingdom of Great Britain and Northern Ireland

asked on

JQuery dynamic change of descriptions in dropdownlist

I have a dynamically vreated dropdownlist with some monetary ranges show like this:

0 to 500
501 to 1000
1001 to 2000
...

Open in new window


I have the following code:

<option value="<%=(RS_Fee01("FeeId"))%>"><span id="currencyindicator"></span><%=(RS_Fee01("AmountFrom"))%> to <span id="currencyindicator"></span><%=(RS_Fee01("AmountTo"))%></option>

Open in new window


I would like it to show the values like this:

£0 to £500
£501 to £1000
£1001 to £2000
...

Open in new window


Or this:

$0 to $500
$501 to $1000
$1001 to $2000
...

Open in new window


I would like to use the JQuery to set a value in the #currencyindicator span on change of currency (another dropdownlist on the same form).

As a quick and dirty test set I set a hard coded value to see if I could get the dropdownlist description updated. It didn't work!

$('#currencyid').change(function() {
	$('span#currencyindicator').text("£");
});

Open in new window


Doesn't seem to be cutting it... ideas?

Regards,
Avatar of leakim971
leakim971
Flag of Guadeloupe image

test page : http://jsfiddle.net/fvq5D/

$(document).ready(function(){
    $('#currencyid').change(function() {
        createDropdown($(this).val());
    }).change();
});
function createDropdown(currency) {
    var index = $('#mySelect').prop('selectedIndex');
    $('#mySelect').empty();
    for(var i=0;i<2000;i+=500) {
        var min = currency + (i+(i>0?1:0));
        var max = currency + (i+500);
        var str = min + ' to ' + max;
        $('#mySelect').append('<option value="' + str + '">' + str + '</option>');
    }
    if(index>=0) $('#mySelect').prop('selectedIndex', index);
}

Open in new window

leakim971 is much better at this stuff then I am and I am sure this can be improved.  

I noticed you are using asp to dynamically generate your code.  One option would be to use asp to write out your js.  If you need to write out html.  Something like below where you are writing your range in the html option data-from and data-to.  You can then access that via jquery to generate the option text.

http://jsbin.com/EyoyEFU/1/edit

<select id="currency">
       <option value="$">$</option>
     <option value="£">£</option>
  </select>  
  
  <select id="money">
  <option value="1" data-from="0" data-to="500"></option>
  <option value="2" data-from="501" data-to="1000"></option>
  <option value="3" data-from="1001" data-to="2000"></option>
  </select>

Open in new window


$(function() {
var currencyindicator='$';
$('select#currency').change(function(){
  currencyindicator=$(this).val();
  $('#money option').each(function(){
     var from=$(this).attr('data-from');
      var to=$(this).attr('data-to');
    $(this).text(currencyindicator+from+'-'+currencyindicator+to);
  });
});
  $('#money option').each(function(){
     var from=$(this).attr('data-from');
      var to=$(this).attr('data-to');
    $(this).text(currencyindicator+from+'-'+currencyindicator+to);
  });
  
  
}); 
  

Open in new window

  <select id="money">
  <option value="1" data-from="0" data-to="500"></option>
  <option value="2" data-from="501" data-to="1000"></option>
  <option value="3" data=from="1001" data-to="2000"></option>
  </select>

Open in new window

convert to


  <option value="<%=(RS_Fee01("FeeId"))%>" data=from="%=(RS_Fee01("AmountFrom"))%>" data-to="%=(RS_Fee01("AmountTo"))%>"></option>

Open in new window

Also, remember in your html, id's are unique, classes are not.  

In your original code you had, <span id="currencyindicator">.  Besides the fact the span does not work in the option, it would have created multiple id's.  Had that worked, you would have wanted to use a class instead of id.
ASKER CERTIFIED SOLUTION
Avatar of Chris Stanyon
Chris Stanyon
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
>Always good to have options:
and a very good one at that!
Why not just use CSS :before or am I missing something?

e.g.

li span:before{
content: "$";
}
@Gary - the OP needs to dynamically change <options> based on another dropdown.
Ahh thought it was a UL not a select - didn't read that properly.