A blast from the past with one of my Web Control Framework pages. I have enabled the AutoPostBack property for a WebRadioButtonList control. This renders as:
<input type="radio" id="radSuggestProxy_1" name="radSuggestProxy" onclick="__doPostBack('radSuggestProxy','change','')" value="XW0020299">
This works fine except one of our customers added their own scripting to the page and we now get this warning when trying that selection:
Form submission cancelled because the form is not connected
with a reference to __doPostBack.
Any idea how to work around that? I can't even figure out where the __doPostBack routine comes from.
--sg

__doPostBack
gets generated into the page when the HTML is rendered.
Form submission cancelled because the form is not connected
This sounds like something related to some client side framework, not from Web Connection.
This probably isn't just some script they are running, but some probably some sort of SPA framework, and the framework is getting confused by the overridden onsubmit handling of __doPostBack
.
You'll need to figure out what is actually going wrong by looking at JavaScript the code running in the page.
+++ Rick ---
Yes, in fact they were loading the Vue.js library. Evidently they were calling a Vue function when rendering the mobile display. We got them to drop Vue and use jQuery instead.
--sg