Please separate the desktop component from the dialog component.
<style type="text/css">
html,body{
margin: 0;
padding: 0;
height: 100%;
}
</style>
$(function(){
$('#desktop').desktop({
//...
})
})
<body>
<div id="desktop" style="height:100%"></div>
<div class="easyui-dialog" title="Title" style="width:75%;max-height:75%;padding-bottom:10px" data-options="closable:false,minimizable:true,modal:false,iconCls:'pagination-loading'">
any text
<br>
any text
<br>
any text
<br>
any text
<br>
any text
<br>
any text
<br>
</div>
</body>