Hi, I have a problem as follows.
If a Window is defined with headerControls with a custom canvas in the array and if the Window is set to with canDragReposition then the window become draggable incorrectly by click/dragging on the body of the window rather than just the header.
The following illustrates the problem:
This problem happens in v8.3 but also in latest v11.
Many thanks for any help with this problem.
If a Window is defined with headerControls with a custom canvas in the array and if the Window is set to with canDragReposition then the window become draggable incorrectly by click/dragging on the body of the window rather than just the header.
The following illustrates the problem:
Code:
isc.Window.create({ width:200, canDragReposition: true, items: [ isc.Label.create({height:1,contents:"drags only on header"}) ] }) isc.Window.create({ top:150, width:200, canDragReposition: true, headerControls: [isc.Label.create({contents:"custom header"})], items: [ isc.Label.create({height:1,contents:"drags on body"}) ] })
Many thanks for any help with this problem.
Comment