This should be easy, but I'm not getting anything helpful to track down the problem.
My includes...
My very simple test code...
Both FireBug and the SC Developer Console give an error:
this.selection.isSelected is not a function
isc.A.getRowWAIState=function(_1){var _...isSelected(_1)){return{selected:true}}}
Also, in the Developer Console 'Watch' tab, a TabBar and 8 ImgButtons are reported to exist (though nothing is showing on screen). The position reported for the TabBar is (0, -19998). All the buttons have a large negative y value as well.
Ideas?
My includes...
Code:
<!-- SmartClient JavaScript Library --> <script type="text/javascript">var isomorphicDir="../isomorphic/";</script> <script type="text/javascript" src="../isomorphic/system/modules/ISC_Core.js"></script> <script type="text/javascript" src="../isomorphic/system/modules/ISC_Foundation.js"></script> <script type="text/javascript" src="../isomorphic/system/modules/ISC_Containers.js"></script> <script type="text/javascript" src="../isomorphic/system/modules/ISC_Grids.js"></script> <script type="text/javascript" src="../isomorphic/system/modules/ISC_Forms.js"></script> <script type="text/javascript" src="../isomorphic/system/modules/ISC_Calendar.js"></script> <script type="text/javascript" src="../isomorphic/system/modules/ISC_DataBinding.js"></script> <script type="text/javascript" src="../isomorphic/system/modules/ISC_Drawing.js"></script> <script type="text/javascript">isc.screenReader = true;</script> <script type="text/javascript">isc.setAutoDraw(false);</script> <script type="text/javascript" src="../isomorphic/skins/Enterprise/load_skin.js"></script>
Code:
isc.Page.setEvent('load',function(){ isc.VLayout.create({ autoDraw: true, width: "100%", height: "100%", layoutMargin: 10, members: [ isc.Calendar.create({top: 0, left: 0}) ] }); });
this.selection.isSelected is not a function
isc.A.getRowWAIState=function(_1){var _...isSelected(_1)){return{selected:true}}}
Also, in the Developer Console 'Watch' tab, a TabBar and 8 ImgButtons are reported to exist (though nothing is showing on screen). The position reported for the TabBar is (0, -19998). All the buttons have a large negative y value as well.
Ideas?
Comment