Thank you Klass for your answer. But I still can't get it to work. here are my actual field ID's
user_id_note = simple input field where user id is entered manually
member_id2 = First select dynamic cascade field automatically filled out with value from user_id_note using conditional state
device_id_note = second select dynamic cascade field ( i am unable to get updated properly after member_id2 has been updated
Here is what I did.
In the user_id_note properties, I added the following code under Scrip (JS)
But the behavior is not what I expect. When I type 788 as user id in user_id_note, member_id2 is well updated but device_id_note is not. If i then enter any other id , member_id2 will be updated with the new id but device_id_note will be updated with the previous ID. so to populate the second select with articles from user 788, i need to enter 788, type enter and type any other ID. Any idea on how it is working like this?
$( "#user_id_note" ).change(function() {
$("#member_id2").change(); });
}