jQWidgets Forums
Forum Replies Created
-
Author
-
March 7, 2012 at 8:00 am in reply to: Docking shows different with IE8 and IE7/Firefox4 Docking shows different with IE8 and IE7/Firefox4 #2588
Hi Peter,
Ok, noted. Thanks.
Best Regards,
QianqianMarch 7, 2012 at 6:16 am in reply to: unable to put datatime widget on window widget correctly unable to put datatime widget on window widget correctly #2585Hi Peter,
Yes, thanks.
It works well with IE8. I used another browser which is based on IE, so it may based on IE7.Best Regards,
qianqianMarch 7, 2012 at 5:43 am in reply to: unable to put datatime widget on window widget correctly unable to put datatime widget on window widget correctly #2582———— why it can’t display code itself? ——————–
————————————————————————-Test datetime on window
$(document).ready(function () {
$(‘#tab’).jqxTabs({ height: 258});
$(‘#date’).jqxDateTimeInput({ width: ‘250px’, height: ’25px’});
$(‘#window’).jqxWindow({ maxHeight: 400, maxWidth: 700, minHeight: 200, minWidth: 200, height: 300, width: 500});
});
Movies
Avatar
Text text text text
March 7, 2012 at 4:39 am in reply to: unable to put datatime widget on window widget correctly unable to put datatime widget on window widget correctly #2580Hi Peter,
Thanks for your reply.
I use IE8 to test this case. And the jQWidgets version is 1.7 which I downloaded yesterday.
BTW, I also tested it on Firefox4.0 which works well.
The code is just based on the sample of the demo.————————————— code below —————————————–
You can use the jqxWindow to direct a user’s attention to a particular activity in your application, such as entering data or viewing information. Consider using a jqxWindow when you want greater customization, you want to block the user interface outside the window, or when you want to retrieve a DialogResult and other data from the popup window. jqxWindow can be displayed as a modal dialog window that blocks user interaction with the underlying user interface or as a standard window without blocking the web page’s user interface.
var basicDemo = (function () {
//Adding event listeners//Creating all page elements which are jqxWidgets
function _createElements() {
$(‘#tab’).jqxTabs({ height: 258, theme: basicDemo.config.theme });
$(‘#date’).jqxDateTimeInput({ width: ‘250px’, height: ’25px’, theme: basicDemo.config.theme });
};//Creating the demo window
function _createWindow() {
$(‘#window’).jqxWindow({ maxHeight: 400, maxWidth: 700, minHeight: 200, minWidth: 200, height: 300, width: 500, theme: basicDemo.config.theme });
};return {
config: {
dragArea: null,
theme: null
},
init: function () {
//Creating all jqxWindgets except the window
_createElements();
//Adding jqxWindow
_createWindow();
}
};
} ());$(document).ready(function () {
var theme = $.data(document.body, ‘theme’, theme);
if (theme == undefined) theme = ”;//Setting demo’s theme
basicDemo.config.theme = theme;
//Initializing the demo
basicDemo.init();});
Movies
Avatar
Avatar is a 2009 American[6][7] epic science fiction film written and directed by
James Cameron, and starring Sam Worthington, Zoe Saldana, Stephen Lang, Michelle
Rodriguez, Joel David Moore, Giovanni Ribisi and Sigourney Weaver. The film is set
in the mid-22nd century, when humans are mining a precious mineral called unobtanium
on Pandora , a lush habitable moon of a gas giant in the Alpha Centauri star system.
The expansion of the mining colony threatens the continued existence of a local
tribe of Na’vi—a humanoid species indigenous to Pandora. The film’s title refers
to the genetically engineered Na’vi-human hybrid bodies used by a team of researchers
to interact with the natives of Pandora. -
AuthorPosts