jQWidgets Forums

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 11 years, 4 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Width/Height Posts
  • Width/Height #48026

    Makla
    Participant

    So far I try jqxTab and jqxWindow.
    I have FULL HD monitor (1920*1080 px). I try to set Width to 1900 but the width is smaller. Similar problem is with Height property.
    screenshot

    <!DOCTYPE html>
    <html>
    	<head>
    		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    		<title>Pametna hiša</title>
    		<script src="Framework/Scripts/jquery-1.10.2.js"></script>
    		<script src="Framework/Scripts/jqwidgets/jqx-all.js"></script>
        	<script type="text/javascript" src="Framework/Scripts/jqwidgets/jquery.global.js"></script>
        	<link rel="stylesheet" href="Framework/Styles/jqx.base.css" type="text/css" />
    		<script>
    
    		$(document).ready(function () 
    		{
    			$('#jqxTabs').jqxTabs(
    			{
    		    	width: 1900,
    		     	height: 30
    		 	});
    		 	$('#jqxWindow').jqxWindow(
    				{
    					width: 1900,
    					height: 800,
    					maxWidth: 1900,
    					maxHeight: 800,
    					position: {x: 5, y:50}
    				});
    		});
    				
    			
    		</script>
    	</head>
    	<body>
    	<div id="jqxTabs">
    		<ul>
    		 <li>test</li>
    		</ul>
    		<div></div>
    	</div>
    	<div id="jqxWindow">
    		<div>title</div>
    		<div> this is content</div>
    	</div>
    	</body>
    </html>
    
    Width/Height #48043

    Peter Stoev
    Keymaster

    Hi Makla,

    There’s no problem with Width/Height. In general setting the width/height of a widget sets the width/height CSS property of the DIV/INPUT tag. In addition, the provided Image is Zoomed which makes me to think that your browser has zooming different than 100% when you took that snapshot. We also have such displays, we have other displays, too and the widgets are rendered correctly.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.