:: Forum >>

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
Tuesday, August 12, 2014
Found any suggestions?
M. Worrings
Thursday, August 21, 2014
Possible workaround - disable context menu handler (which allows copy/paste commands)

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

This topic is archived.


Back to support forum

Forum search