Resizable position
How can I set and get the position of a Resizeble draggable object? The code is:
var basicResize = new Ext.Resizable(eId, {
wrap:true,
draggable: draggable,
pinned:false,
width:w,
height:h,
dynamic: true,
x: xPos,
y: yPos,
handles: handles,
listeners: {
beforeresize:{
scope: this,
fn: function(resizer, e){
element.showProperties();
}
},
resize: {
scope: this,
fn: function(resizer, width, height, e){
element.width.setValue(width, true);
element.height.setValue(height, true);
element.showProperties();
}
}
}
});
#If you have any other info about this subject , Please add it free.# |

