1.脚本代码
function showCreate(){
$('#createDialog').dialog({
title : '新增客户经理'
},{
height : 580
},{
width : 780
},{
resizable : true
},{
modal : true
...
分类:
Web程序 时间:
2015-03-31 10:51:45
阅读次数:
185
//各屏幕弹出窗样式// 1366*768var style_1366x768 = "dialogWidth:950px;dialogHeight:650px;help:no;center:yes;status:no;resizable:no;location:yes;";//弹出窗口示例代码fun...
分类:
其他好文 时间:
2015-03-30 12:59:47
阅读次数:
93
这篇文章总结的是我在使用resizable插件的过程中,遇到的问题及变通应用的奇思妙想。 一、resizable使用注意事项 以下是我在jsfiddle上写的测试demo:http://jsfiddle.net/pLuymmp1 1 2 3 html1 .outer{width:1...
分类:
Web程序 时间:
2015-01-28 21:08:38
阅读次数:
235
easyui的base插件学习已经进行到Resizable(可缩放)了。照旧看看easyui官网的API。Resiable 正如其字面意思一样(可伸缩),resiable主要是将一些html元素扩展为可伸缩的,panel、window等,不信的话查阅easyui载入器源代码就能够知道啦!...
分类:
其他好文 时间:
2015-01-14 19:40:41
阅读次数:
224
1、打开弹出窗口时把 window 作为第二个参数传入。var result = window.showModalDialog(url, window, "dialogWidth=" + width + "px;dialogHeight=" + height + "px;resizable:yes;...
分类:
Web程序 时间:
2015-01-04 19:15:41
阅读次数:
183
1, 最基本的弹出窗口代码
window.open('page.html');
2, 经过设置后的弹出窗口
window.open('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no, locat...
今天用了jq ui的拖动碰撞功能,好不容易看到有详细的API解说,记录如下: Drag me around i can fly! Drop here Resizable Item 1 Item 2 Item 3 Item 4 Item 5 Item 6 Item 7 It...
分类:
Web程序 时间:
2014-12-18 22:13:18
阅读次数:
245
如果初始化一个DIV并设置了高度宽度,但是又想动态改变div尺寸大小,就需要使用ResizableResizable插件有2种方式实现第一种通过标记创建Resizable对象<divclass="easyui-resizable"style="width:100px;height:100px;border:1pxsolid#ccc;"data-options="maxWidth:800,maxHei..
分类:
Web程序 时间:
2014-12-17 06:52:36
阅读次数:
395
1、打开弹出窗口时把 window 作为第二个参数传入。var result = window.showModalDialog(url, window, "dialogWidth=" + width + "px;dialogHeight=" + height + "px;resizable:yes;...
分类:
其他好文 时间:
2014-12-04 23:06:05
阅读次数:
199