Skip to main content
Inspiring
April 6, 2022
Answered

HTML5 Canvas - Combobox clear values

  • April 6, 2022
  • 1 reply
  • 403 views

I have a combobox which is dynamically populated via JQuery AJAX with JSON.

 

How do I clear the values of that combobox to refesh it for new values?

 

 

    This topic has been closed for replies.

    1 reply

    FlatChatAuthor
    Inspiring
    April 6, 2022

    I have tried in the following code:

     

    $('#patients_cbx').prop('selectedIndex',0);

     

    and also

     

    $('#patients_cbx').val('');

     

    I cannot find any reference from Adobe on doing this or a lot of other seemingly simple things...most frustrating!

     

    		$.ajax({
    			type: "POST",
    			url: 'scripts/get_patients.php',
    			dataType: 'json',
    			data: {
    				complexity: complexity
    			},
    			success: function (data) {
    				$('#patients_cbx').prop('selectedIndex',0);
    				console.log(complexity);
    				for (var i = 0; i < data.length; i++) {
    					$('#patients_cbx').append($("<option/>").attr("value", data[i].data).text(data[i].label));
    				}
    			}
    		});
    FlatChatAuthor
    Inspiring
    April 7, 2022

    An answer on this question please?

    FlatChatAuthorCorrect answer
    Inspiring
    April 8, 2022