jQWidgets Forums
Forum Replies Created
-
Author
-
1. If function have 2 parameters, then it should set them
2. For example obj.jqxWindow(‘resize’, 100, 10000);+ resize function does not work. It changes the height, but does not change the width.
I need to call 2 times to change the width.
+ If you specify a height of more opportunities, the width has not changed at all.December 19, 2014 at 8:03 am in reply to: Select the text in the jqxgrid when editable = false Select the text in the jqxgrid when editable = false #64465Perhaps this is due with copy the whole line
December 19, 2014 at 8:01 am in reply to: Select the text in the jqxgrid when editable = false Select the text in the jqxgrid when editable = false #64464If you do by instruction in my first post – no such problem
December 19, 2014 at 7:41 am in reply to: Select the text in the jqxgrid when editable = false Select the text in the jqxgrid when editable = false #64462Now, there was a problem.
After select and click ctrl + C – the selection is cleared and copied the whole lineDecember 19, 2014 at 7:40 am in reply to: Select the text in the jqxgrid when editable = false Select the text in the jqxgrid when editable = false #64460Now, there was a problem.
Field as vydelel and hit ctrl + C – the selection is cleared and copied the whole lineDecember 19, 2014 at 7:28 am in reply to: Select the text in the jqxgrid when editable = false Select the text in the jqxgrid when editable = false #64458Thank you so much, I’m sorry that I have not found it myself
December 3, 2014 at 10:39 am in reply to: TypeError: window.clipboardData is undefined TypeError: window.clipboardData is undefined #63706Thank you so much!
December 3, 2014 at 6:27 am in reply to: TypeError: window.clipboardData is undefined TypeError: window.clipboardData is undefined #63681Is it possible, add to work plan copy ability for this widget?
November 28, 2014 at 7:00 am in reply to: TypeError: window.clipboardData is undefined TypeError: window.clipboardData is undefined #63503I do not know why it happens
in one place – the exception
in another – all ok
But I’m more interested
Is it possible add to work plan copy ability for this widgetNovember 27, 2014 at 1:45 pm in reply to: TypeError: window.clipboardData is undefined TypeError: window.clipboardData is undefined #63474The exception of course is seen only in debug mode
November 27, 2014 at 12:37 pm in reply to: TypeError: window.clipboardData is undefined TypeError: window.clipboardData is undefined #63460Hi Peter,
1 why? others widget support
2 Edit->Copy – work
3 if not support – do not display error messageNovember 14, 2014 at 6:25 am in reply to: Separator inside source based jqmenu Separator inside source based jqmenu #62736I did so
<!DOCTYPE html>
<html lang=”en”>
<head>
<link rel=”stylesheet” href=”../../jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”../../scripts/jquery-1.10.2.min.js”></script>
<script type=”text/javascript” src=”../../scripts/demos.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”../../jqwidgets/jqxmenu.js”></script>
<script type=”text/javascript”>
$(document).ready(function () {
var source = [
{ label: “item1” },
{ id: “menuSeparator” },
{ label: “item2” },
{ id: “menuSeparator” },
{ label: “item3” }
];
$(“#jqxMenu”).jqxMenu({ source: source, width: ‘180px’, height: ‘180px’, mode: ‘vertical’});
$(“li[id=’menuSeparator’]”).attr(“class”,”jqx-menu-item-separator jqx-rc-all”);
});
</script>
</head>
<body >
<div id=’jqxMenu’ style=’float: left;’></div>
</body>
</html>November 14, 2014 at 6:24 am in reply to: How do I add a separator when loading from an array? How do I add a separator when loading from an array? #62735I did so
<!DOCTYPE html>
<html lang=”en”>
<head>
<link rel=”stylesheet” href=”../../jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”../../scripts/jquery-1.10.2.min.js”></script>
<script type=”text/javascript” src=”../../scripts/demos.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxcore.js”></script><script type=”text/javascript” src=”../../jqwidgets/jqxmenu.js”></script>
<script type=”text/javascript”>
$(document).ready(function () {
var source = [
{ label: “item1” },
{ id: “menuSeparator” },
{ label: “item2” },
{ id: “menuSeparator” },
{ label: “item3” }
];
$(“#jqxMenu”).jqxMenu({ source: source, width: ‘180px’, height: ‘180px’, mode: ‘vertical’});
$(“li[id=’menuSeparator’]”).attr(“class”,”jqx-menu-item-separator jqx-rc-all”);
});
</script>
</head>
<body >
<div id=’jqxMenu’ style=’float: left;’></div>
</body>
</html> -
AuthorPosts