Working with the Upgrade 5 of GxEv3, I find in fiddler that I am generating unnecessary requests to / content / blank
I see that those requests are generated because in the form (MAINFORM) is the action like this:
On the other hand, the only place where content / blank appears is in the 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 problem introduced in this version or am I missing something?