3.2.0

Bug: right click on grid in chrome

After I used the right Mousebutton on my grid,
I can't interact with it.

for example
var obj = new AW.UI.Grid;
    obj.setCellText(function(i, j){return j + "." + i});
    obj.setHeaderText("header");

    obj.setColumnCount(10);
    obj.setRowCount(100);

    obj.setCellEditable(true);

    document.write(obj);

    document.write("<br>");

    var label = new AW.UI.Label;
    document.write(label);


Thanks in advance
M. Worrings
August 12,
Found any suggestions?
M. Worrings
August 21,
Possible workaround - disable context menu handler (which allows copy/paste commands)

new AW.UI.Grid();
    AW.UI.Grid.prototype.setEvent("oncontextmenu", "");
Alex (ActiveWidgets)
August 22,
It's working fine now thanks.
M. Worrings
August 25,

This topic is archived.

See also:


Back to support forum