I'm using Domino 8.5.3 (Dojo 1.5.1),a nd I'm a total beginner regarding Xpages or Dojo.
How can I make a container movable with dojo in 8.5.3?
This is the source of my Xpage. What do I have to add so I can drag and drop 'dndOne' ? Is it even possible?
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" dojoTheme="true">
<xp:this.resources>
<xp:dojoModule name="dojo.dnd.Moveable"></xp:dojoModule>
</xp:this.resources>
<xp:panel id="dndOne"
style="width:100px;
height:100px;
padding: 10px;
border: 1px solid #000;
background-color:red">
I want to move!
</xp:panel>
</xp:view>
Any advice would be appreciated. Thanks ! François