3.2.0

[no subject]

Hi everyone, I have a problem when i am clicking on header checkbox to select all checkbox of grid records. i am getting an error.


Error: Incorrect function.

Url: https://investor-portal-developer-edition.na15.force.com/resource/1407220298000/aaa/ActiveWidgets_2557/runtime/lib/aw.js
Line Number: 57
Lalit
August 7,
This patch should fix it -

new AW.UI.ImageText();

AW.UI.ImageText.prototype.setEvent("onactivate", function(event){

    var e = this.getContent("box/text").element();
    if (e && event.srcElement != e ){
        this.setTimeout(function(){
            try {
                if (this.$active) {
                    e.setActive();
                }
            }
            catch(e) {
                // IE
            }
        });
    }
});


add this code just after aw.js
Alex (ActiveWidgets)
August 21,
Thanks Alex. Basically we have to add this code at the end in aw.js file and update static resource.
Lalit
August 22,

This topic is archived.

See also:


Back to support forum