Working with Upgrade 5 of GxEv3, I find in fiddler that unnecessary requests are being generated to /content/blank
I see that these requests are generated because in the form (MAINFORM) there is the action like this:
On the other hand, the only place content/blank appears is in gxgral.js:
saveFormForAutoComplete:function(){
if (gx.grid.drawAtServer || (gx.util.browser.isIE() && (gx.util.browser.isCompatMode() || document.documentMode <= 7 || gx.util.browser.ieVersion() <= 7) ))
return;
var GX_IFRAME_FFORM_AUTOC = 'gx_iframe_force_ajax_autocomplete';
var form = gx.dom.form();
var tmpIframe = document.createElement('iframe');
tmpIframe.id = GX_IFRAME_FFORM_AUTOC;
tmpIframe.name = GX_IFRAME_FFORM_AUTOC;
tmpIframe.style.cssText = 'display: none';
**tmpIframe.src="/content/blank";**
document.body.appendChild(tmpIframe);
Was this issue introduced in this version or am I missing something?
This problem was introduced in version XEv3 U5 and has been fixed in U6 which will be released in the next few days.
In the meantime, the code of the 'saveFormForAutoComplete' function can be commented out without consequences for the application.