My version is v10.1p_2015-12-18/Enterprise Deployment (built 2015-12-18).
I'm using:
- IE 11.0.96
- Chrome Version 49.0.2623.110 m
- Safari Version 9.0.3 (11601.4.4)
I have a canvas subclass to wrap a third party text editor, called Ace.
It works perfectly in Chrome, Firefox, and Safari, however, in IE, copy/paste keyboard shortcuts, as well as the context menu for copy/paste, is *not* working/getting called.
Attached is a stripped down test-case.
Please advise if I need to provide additional data or tests.
Mitch.
<!DOCTYPE html>
<html style="overflow:hidden; height:100%;">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Cognition Cockpit</title>
<!-- editor script (added before SmartClient as per the DOM Integration & Third-party Components Guide) -->
<script src="scripts/ace/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="scripts/jquery.min.js" type="text/javascript"></script>
<script>var isomorphicDir="../Frameworks/isomorphic/";</script>
<script>window.isc_useSimpleNames = false;</script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_Core.js" ></script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_Foundation.js" ></script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_Containers.js" ></script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_Grids.js" ></script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_Forms.js" ></script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_DataBinding.js" ></script>
<!-- smart client custom scripts -->
<script src="scripts/test.js"></script>
</head>
<body class="setRight" scroll="no" id="wholePage">
<script>
isc.Page.setAppImgDir( "[APP]../" );
isc.setAutoDraw( false );
// create the main page
var MainApp = isc.CockpitIDEApp.create( {} );
</script>
</body>
</html>
Test and Ace Scripts:
==================
test.js
Since I can't give a zip file of the ace javascript, here is a link:[FONT=Arial][COLOR=#222222] [/COLOR][/FONT]https://github.com/ajaxorg/ace-builds/tree/master/src-noconflict
I'm using:
- IE 11.0.96
- Chrome Version 49.0.2623.110 m
- Safari Version 9.0.3 (11601.4.4)
I have a canvas subclass to wrap a third party text editor, called Ace.
It works perfectly in Chrome, Firefox, and Safari, however, in IE, copy/paste keyboard shortcuts, as well as the context menu for copy/paste, is *not* working/getting called.
Attached is a stripped down test-case.
Please advise if I need to provide additional data or tests.
Mitch.
<!DOCTYPE html>
<html style="overflow:hidden; height:100%;">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Cognition Cockpit</title>
<!-- editor script (added before SmartClient as per the DOM Integration & Third-party Components Guide) -->
<script src="scripts/ace/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="scripts/jquery.min.js" type="text/javascript"></script>
<script>var isomorphicDir="../Frameworks/isomorphic/";</script>
<script>window.isc_useSimpleNames = false;</script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_Core.js" ></script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_Foundation.js" ></script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_Containers.js" ></script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_Grids.js" ></script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_Forms.js" ></script>
<script src = "../Frameworks/isomorphic/system/modules/ISC_DataBinding.js" ></script>
<!-- smart client custom scripts -->
<script src="scripts/test.js"></script>
</head>
<body class="setRight" scroll="no" id="wholePage">
<script>
isc.Page.setAppImgDir( "[APP]../" );
isc.setAutoDraw( false );
// create the main page
var MainApp = isc.CockpitIDEApp.create( {} );
</script>
</body>
</html>
Test and Ace Scripts:
==================
test.js
Since I can't give a zip file of the ace javascript, here is a link:[FONT=Arial][COLOR=#222222] [/COLOR][/FONT]https://github.com/ajaxorg/ace-builds/tree/master/src-noconflict
Comment