2018-03-05 07:54 AM
Archer v6.2 get selected value of value list
i tried your many ways using Jquery it worked in 5.x but not in 6.2
$("#s1 option:selected").val();
$("#dropDownId").children("option").filter(":selected").text()
$("#item1 span").text();
alert($(this).find('span').text());
2018-03-05 08:12 AM
i added the CSS class check and able to get the value but want to get with ID rather than class.
2018-04-02 11:46 AM
If you know how to use the browsers console window try finding your field. Make sure the ID you are using is right.**
If you think the ID is right, then from the console window, run your jquery to check your results.
If it doesn't work there, it won't work in your custom object.
**The field ID you posted in your question is very generic. In Archer, the same field could have several different variations of the ID that contains different data.
Also, just making sure you know there is a difference in finding a field when the record is in edit mode vs. view mode.
It might work better to explain if you post a snapshot of your field from the browsers developer/debug window.
2018-04-03 04:49 AM
yeah i was able to do it with * missed to add solution here.