Hello,
It looks like you have completely modified your AwesomeMvc.js in latest version.
Earlier we could find the id generated for radio button or check boxes etc. in newer version its not at all generated.
//In earlier version
<li>
<input " +(d.S ? 'checked="checked"' : l) + 'id="' + a.i + "item" + b + '" name="' + a.v.data("name") + '" value="' + d.V + '" type="checkbox"/>
<label class="awe-label" for="' + a.i + "item" + b + '">' + d.T + "</label>
</li>
//latest version
u += '<li><label class="awe-label"><input type="' + i + '" value="' + o[0] + '" name="' + t.nm + '" ' + (o[2] ? 'checked="checked"' : "") + " />" + o[1] + "<\/label><\/li>"
We considered that id will be generated permanently with same format however you have completely changed it. Now for testing the app which we created has stopped working. I think its better to rollback newer updates and use earlier version. At run time we check the id of check box and radio buttons, so its not working with latest update.
Any advise?
It looks like you have completely modified your AwesomeMvc.js in latest version.
Earlier we could find the id generated for radio button or check boxes etc. in newer version its not at all generated.
//In earlier version
<li>
<input " +(d.S ? 'checked="checked"' : l) + 'id="' + a.i + "item" + b + '" name="' + a.v.data("name") + '" value="' + d.V + '" type="checkbox"/>
<label class="awe-label" for="' + a.i + "item" + b + '">' + d.T + "</label>
</li>
//latest version
u += '<li><label class="awe-label"><input type="' + i + '" value="' + o[0] + '" name="' + t.nm + '" ' + (o[2] ? 'checked="checked"' : "") + " />" + o[1] + "<\/label><\/li>"
We considered that id will be generated permanently with same format however you have completely changed it. Now for testing the app which we created has stopped working. I think its better to rollback newer updates and use earlier version. At run time we check the id of check box and radio buttons, so its not working with latest update.
Any advise?