I am mapping a service to a radiogroup and want to get text of the the checked radio button. I was suggested the following code which was working completely fine, but after migrating to V2.0 libs this no longer works for me.
Could you suggest what is wrong - I've also posted this to support@appery with a bit more background and steps to replicate the problem in my project.
Many thanks - look forward to your feedback!
//execute on success of event:
$('[dsid="RadioButton"]').eq(1).find('input').prop("checked", true).checkboxradio("refresh");
//and this code to read value of checked button
var addr = $('input[name=RadioGroup]:checked').next().find(".ui-btn-text").html();