GXEv3 U5 - erroneous requests are generated a / content / blank

2

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?

    
asked by dmonza 28.12.2015 в 18:28
source

1 answer

0

This problem was introduced in the XEv3 U5 version and was fixed in U6 that will be released in the coming days.

Meanwhile, the code of the 'saveFormForAutoComplete' function can be commented without consequences for the application.

    
answered by 04.01.2016 / 20:01
source