jQWidgets Forums
Forum Replies Created
-
Author
-
February 20, 2017 at 10:51 am in reply to: Get Row index by position Get Row index by position #91704
Hi
Any suggestion for the above question?
September 22, 2016 at 11:36 am in reply to: JqxDatatable inside JqxTab JqxDatatable inside JqxTab #87627Hi Hristo,
I have used initTabContent as well.
But my data inside datatble is not a static one it will change.
So I have used tabclick event as well.
while using both datatable inside tab gets shrinking.
Can you please check this situation.Thanks & Regards,
Devi.NHi Dimitar,
Thanks for the solution.
Regards,
Devi.Hi Mariya,
Thanks for your reply.If I generated data in client side that time it’s working fine.
But I am generating data from server side and passing it to the javascript that time it’s not loading the data fully at the first time.
I have tried with latest version 3.9.1 also I could not able to achieve this. Please give your comment on this situation.Thanks in advance,
Devi.October 9, 2015 at 11:19 am in reply to: window height and width is not setting properly window height and width is not setting properly #76606Hi Vladimir,
I am using the below code ,
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head runat=”server”>
<link rel=”stylesheet” type=”text/css” href=”jqwidgets/styles/jqx.base.css” />
<script type=”text/javascript” src=”Scripts/jquery-1.10.2.min.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxinput.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdata.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxmenu.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcombobox.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdropdownlist.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxvalidator.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcheckbox.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdata.export.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxtabs.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxwindow.js”></script>
<script type=”text/javascript”>
$(document).ready(function () {
$(“.test”).jqxButton({
width: 300,
height: 30,
theme: ‘energyblue’
});$(“#jqxbutton”).on(‘click’, function () {
Loadwindow(‘200px’, ‘300px’, ‘sample’);
});$(“#jqxbutton1”).on(‘click’, function () {
Loadwindow(‘400px’, ‘300px’, ‘sample’);
});$(“#jqxbutton2”).on(‘click’, function () {
Loadwindow(‘200px’, ‘500px’, ‘sample’);
});$(“#jqxbutton3”).on(‘click’, function () {
Loadwindow(‘200px’, ‘300px’, ‘sample’);
});$(“#jqxbutton4”).on(‘click’, function () {
Loadwindow(‘600px’, ‘300px’, ‘sample’);
});$(“#jqxbutton5”).on(‘click’, function () {
Loadwindow(‘200px’, ‘100px’, ‘sample’);
});$(“#jqxbutton6”).on(‘click’, function () {
Loadwindow(‘300px’, ‘300px’, ‘sample’);
});$(“#jqxbutton7”).on(‘click’, function () {
Loadwindow(‘200px’, ‘400px’, ‘sample’);
});$(“#jqxbutton8”).on(‘click’, function () {
Loadwindow(‘400px’, ‘500px’, ‘sample’);
});
});function Loadwindow(heightCss, widthCss, contentHtml) {
$(“#winHeader”).html(“”);
$(“#wincontent”).html(contentHtml);
$(“#jqxwindow”).jqxWindow({
width: widthCss, height: heightCss, draggable: false, showCloseButton: true,
});
var x = ($(window).width() – $(“#jqxwindow”).jqxWindow(‘width’)) / 2 + $(window).scrollLeft();
var y = ($(window).height() – $(“#jqxwindow”).jqxWindow(‘height’)) / 2 + $(window).scrollTop();
$(“#jqxwindow”).jqxWindow({ position: { x: x, y: y } });
$(“#jqxwindow”).jqxWindow(‘open’);
}
</script>
<title></title>
</head>
<body>
<form id=”form1″ runat=”server”>
<div>
<input type=”button” style=”margin: 50px;” id=”jqxbutton” class=”test” value=”200*300″ />
<input type=”button” style=”margin: 50px;” id=”jqxbutton1″ class=”test” value=”400*300″ />
<input type=”button” style=”margin: 50px;” id=”jqxbutton2″ class=”test” value=”200*500″ />
<input type=”button” style=”margin: 50px;” id=”jqxbutton3″ class=”test” value=”200*300″ />
<input type=”button” style=”margin: 50px;” id=”jqxbutton4″ class=”test” value=”600*300″ />
<input type=”button” style=”margin: 50px;” id=”jqxbutton5″ class=”test” value=”200*100″ />
<input type=”button” style=”margin: 50px;” id=”jqxbutton6″ class=”test” value=”300*300″ />
<input type=”button” style=”margin: 50px;” id=”jqxbutton7″ class=”test” value=”200*400″ />
<input type=”button” style=”margin: 50px;” id=”jqxbutton8″ class=”test” value=”400*500″ />
</div>
<div id=’jqxwindow’>
<div id=”header” style=”height: 15px;”>
<div id=’winHeader’>
</div>
<div class=”jqx-window-close-button-background jqx-window-close-button-background-summer”
style=”visibility: visible; width: 16px; height: 16px; margin-right: 5px; margin-left: 0px; position: absolute; right: 0px;”>
</div>
</div>
<div id=’wincontent’>
</div>
</div>
</form>
</body>
</html>Thanks in Advance,
DeviOctober 9, 2015 at 7:31 am in reply to: window height and width is not setting properly window height and width is not setting properly #76602Hi Vladimir,
Thanks for your support.I have to open window with maximum 30 different height and width in a single page.
So without creating different div’s for each , how can I achieve this.
Please help me in this.Thanks in Advance,
Devi.July 2, 2015 at 12:35 pm in reply to: Grid – 50 rows without scroll and autorowheight as true Grid – 50 rows without scroll and autorowheight as true #73298Hi ivalio,
Thanks for your immediate response.
Sorry I have one more requirement that I have to set page size as 100 and show 50 rows without scroll.
So in this case what I have to do?
Thanks in Advance,
Devi -
AuthorPosts