|
Add a listener function to process mouseout events of WebResizingExtender.
Reference to a function which will be called on mouseout events.
Note: the args parameter in handler function is an instance of the CancelEventArgs class. Example:
function myFnc(sender, args) { var evt = args.getBrowserEvent(); var rawEvt = evt ? evt.rawEvent : null; if(rawEvt) window.status = 'x=' + rawEvt.clientX; } var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.add_mouseout(myFnc);
|
|
Add a listener function to process mouseover events of WebResizingExtender.
Reference to a function which will be called on mouseover events.
Note: the args parameter in handler function is an instance of the CancelEventArgs class. Example:
function myFnc(sender, args) { var evt = args.getBrowserEvent(); var rawEvt = evt ? evt.rawEvent : null; if(rawEvt) window.status = 'x=' + rawEvt.clientX; } var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.add_mouseover(myFnc);
|
|
Add a listener function to process resize events of WebResizingExtender. That event is raised at the end of resize action when mouse is released. Application may cancel that event or modify final size.
Reference to a function which will be called on resize events.
Note: the args parameter in handler function is an instance of the ResizeEventArgs class. Example:
function myFnc(sender, args) { if(args.getWidth() == 20) if(args.getOldWidth() == 100) args.set_cancel(true); if(args.getHeight() == 20) args.setHeight(50); } var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.add_resize(myFnc);
|
|
Add a listener function to process resizing events of WebResizingExtender. That event is raised while resizing by mouse drag. Application may cancel that event.
Reference to a function which will be called on resizing events.
Note: the args parameter in handler function is an instance of the ResizeEventArgs class. Example:
function myFnc(sender, args) { if(args.getWidth() == 20) if(args.getOldWidth() == 100) args.set_cancel(true); } var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.add_resizing(myFnc);
|
|
That method allows to get value of css class applied to the handler (rectangle at the bottom right corner of resizing panel).
|
|
That method allows to get value of src applied to IMG of handler (rectangle at the bottom right corner of resizing panel).
Name of url used for image.
|
|
That method allows to get name of the handler function which is used to process initialization event.
|
|
That method allows to get value of maximum height.
|
|
That method allows to get value of maximum width.
|
|
That method allows to get value of minimum height.
|
|
That method allows to get value of minimum width.
|
|
That method allows to get name of the handler function which is used to process mouseout event.
|
|
That method allows to get name of the handler function which is used to process mouseover event.
|
|
That method allows to get value of the offset of resizing panel from the bottom edge of target element.
|
|
That method allows to get value of the offset of resizing panel from the left edge of target element.
|
|
That method allows to get value of the offset of resizing panel from the right edge of target element.
|
|
That method allows to get value of the offset of resizing panel from the top edge of target element.
|
|
That method allows to get value which defines how the parent element of resizing panel is calculated.
Numeric value. 0 - automatic. 1 - child node of target html element. 2 - child node of the parent of the target html element.
|
|
That method allows to get name of the handler function which is used to process resize event.
|
|
That method allows to get value which is applied to the border of resizing panel.
String similar to "2px solid red".
|
|
That method allows to get name of the handler function which is used to process resizing event.
|
|
That method allows to get value the id of target html element.
|
|
Remove a listener function which was set by add_mouseout method.
Reference to a function to be removed.
|
|
Remove a listener function which was set by add_mouseover method.
Reference to a function to be removed.
|
|
Remove a listener function which was set by add_resize method.
Reference to a function to be removed.
|
|
Remove a listener function which was set by add_resizing method.
Reference to a function to be removed.
|
|
That method allows to set value of css class applied to the handler (rectangle at the bottom right corner of resizing panel).
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_handleClass('myHandlerCss');
|
|
That method allows to set value of src attribute of the html element which is used as the handler (rectangle at the bottom right corner of resizing panel).
Note: that method may have effect only if IMG element is used. Example:
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_handleImage('./myHandlerImage.gif');
|
|
|
|
That method allows to set value for the maximum height.
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_maximumHeight(300);
|
|
That method allows to set value for the maximum width.
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_maximumWidth(300);
|
|
That method allows to set value for the minimum height.
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_minimumHeight(100);
|
|
That method allows to set value for the minimum width.
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_minimumWidth(100);
|
|
Set name of function which can be used to process mouseout events.
Note: the args parameter in handler function is an instance of the CancelEventArgs class. Example:
function myFnc(sender, args) { var evt = args.getBrowserEvent(); var rawEvt = evt ? evt.rawEvent : null; if(rawEvt) window.status = 'x=' + rawEvt.clientX; } var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_mouseout('myFnc');
|
|
Set name of function which can be used to process mouseover events.
Note: the args parameter in handler function is an instance of the CancelEventArgs class. Example:
function myFnc(sender, args) { var evt = args.getBrowserEvent(); var rawEvt = evt ? evt.rawEvent : null; if(rawEvt) window.status = 'x=' + rawEvt.clientX; } var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_mouseover('myFnc');
|
|
That method allows to set value for the offset of resizing panel from the bottom edge of target element.
Value can be positive or negative. Example:
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_offsetBottom(-2);
|
|
That method allows to set value for the offset of resizing panel from the left edge of target element.
Value can be positive or negative. Example:
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_offsetLeft(2);
|
|
That method allows to set value for the offset of resizing panel from the right edge of target element.
Value can be positive or negative. Example:
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_offsetRight(-2);
|
|
That method allows to set value for the offset of resizing panel from the top edge of target element.
Value can be positive or negative. Example:
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_offsetTop(2);
|
|
|
|
Set name of function which can be used to process resize events.
Set name of function which can be used to process mouseover events.
Name of a function. handler
Note: the args parameter in handler function is an instance of the ResizeEventArgs class. Example:
function myFnc(sender, args) { if(args.getWidth() == 20) if(args.getOldWidth() == 100) args.set_cancel(true); if(args.getHeight() == 20) args.setHeight(50); } var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_resize('myFnc');
|
|
That method allows to set border for the resizing panel.
Note: value should start with a digit which represents the width of border. Example:
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_resizeBorder('4px dotted blue');
|
|
Set name of function which can be used to process resizing events.
Note: the args parameter in handler function is an instance of the ResizeEventArgs class. Example:
function myFnc(sender, args) { if(args.getWidth() == 20) if(args.getOldWidth() == 100) args.set_cancel(true); } var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.set_resizing('myFnc');
|
|
|
|
That method allows to set size of resizing panel.
var wre = Sys.Application.findComponent("WebResizingExtender1"); wre.setSize(400, 200);
|