I'm trying to disable the View Source. Here's the code:

    <!-- Remove "View Source" From Right-Click -->
    <method event="oninit">
        this.removeViewSourceMenu();
    </method>
    <method name="removeViewSourceMenu">
        var cm1 = new ContextMenu();
        cm1.hideBuiltInItems();
        cm1.addItem(this.__LZdefaultMenuItem);
        this.setContextMenu(cm1);
    </method>

It does nothing. Any suggestions?

Thanks!
--Dan

_______________________________________________
Laszlo-user mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-user

Reply via email to