Using IE 7, 8 or 9 or 10
I could create the exact issue in the online example given by smartcilent themselves:
http://www.smartclient.com/#windowsDragging
add following line -
showHeaderBackground:true,
in the dragging .js.
It will look like this:
isc.defineClass("HelpCanvas", "Canvas").addProperties({
autoDraw: false,
defaultWidth: 300,
padding: 10,
contents: "<b>Severity 1</b> - Critical problem<br>System is unavailable in production or " +
"is corrupting data, and the error severely impacts the user's operations." +
"<br><br><b>Severity 2</b> - Major problem<br>An important function of the system " +
"is not available in production, and the user's operations are restricted." +
"<br><br><b>Severity 3</b> - Minor problem<br>Inability to use a function of the " +
"system occurs, but it does not seriously affect the user's operations."
});
isc.Window.create({
title: "Severity Levels",
autoSize: true,
canDragReposition: true,
canDragResize: true,
showHeaderBackground:true,
items: [
isc.HelpCanvas.create()
]
});
Then click on Try it button.
You will see that the window is no more draggable.
Unless the cursor is place over the words "Severity Levels" in the title bar user can not drag the window.
Please fix it as soon as possible.
I could create the exact issue in the online example given by smartcilent themselves:
http://www.smartclient.com/#windowsDragging
add following line -
showHeaderBackground:true,
in the dragging .js.
It will look like this:
isc.defineClass("HelpCanvas", "Canvas").addProperties({
autoDraw: false,
defaultWidth: 300,
padding: 10,
contents: "<b>Severity 1</b> - Critical problem<br>System is unavailable in production or " +
"is corrupting data, and the error severely impacts the user's operations." +
"<br><br><b>Severity 2</b> - Major problem<br>An important function of the system " +
"is not available in production, and the user's operations are restricted." +
"<br><br><b>Severity 3</b> - Minor problem<br>Inability to use a function of the " +
"system occurs, but it does not seriously affect the user's operations."
});
isc.Window.create({
title: "Severity Levels",
autoSize: true,
canDragReposition: true,
canDragResize: true,
showHeaderBackground:true,
items: [
isc.HelpCanvas.create()
]
});
Then click on Try it button.
You will see that the window is no more draggable.
Unless the cursor is place over the words "Severity Levels" in the title bar user can not drag the window.
Please fix it as soon as possible.
Comment