Easyui dialog

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="styleSheet" type="text/css" href="js/easyUI/metro/easyui.css">
<link rel="stylesheet" type="text/css" href="js/easyUI/icon.css">
<link rel="stylesheet" type="text/css" href="js/easyUI/demo.css">

<script type="text/javascript" src="js/easyUI/jquery.min.js"></script>
<script type="text/javascript" src="js/easyUI/jquery.easyui.min.js"></script>
<script type="text/javascript" src="js/easyUI/easyui-lang-zh_CN.js"></script>
<script type="text/javascript" src="js/test.js"></script>
</head>
<body>
	<h2>Basic Dialog</h2>
	<p>Click below button to open or close dialog.</p>
	<div style="margin:20px 0;">
		<a href="javascript:void(0)" class="easyui-linkbutton" onclick="$(‘#dlg‘).dialog(‘open‘)">Open</a>
		<a href="javascript:void(0)" class="easyui-linkbutton" onclick="$(‘#dlg‘).dialog(‘close‘)">Close</a>
	</div>
	<div id="dlg" class="easyui-dialog" title="Basic Dialog" data-options="iconCls:‘icon-save‘" style="width:400px;height:200px;padding:10px">
        <table>
            <tr>
                <td><span>修改内容:</span></td>
                <td><input class="easyui-textbox"  id="content" style="height:25px"/></td>
            </tr>
        </table>
	</div>
	<table id="tab" class="easyui-datagrid" title="Basic DataGrid" style="width:700px;height:250px"
			data-options="singleSelect:true,collapsible:true,url:‘datagrid_data1.json‘,method:‘get‘">
		<thead>
			<tr>
				<th data-options="field:‘id‘,width:80">Item ID</th>
				<th data-options="field:‘productid‘,width:100">Product</th>
				<th data-options="field:‘listprice‘,width:80,align:‘right‘">List Price</th>
				<th data-options="field:‘unitcost‘,width:80,align:‘right‘">Unit Cost</th>
				<th data-options="field:‘attr1‘,width:250">Attribute</th>
				<th data-options="field:‘status‘,width:60,align:‘center‘">Status</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<td>1</td>
				<td>1</td>
				<td>1</td>
				<td>1</td>
				<td>1</td>
				<td>1</td>
			</tr>
			<tr>
				<td>12</td>
				<td>12</td>
				<td>12</td>
				<td>12</td>
				<td>12</td>
				<td>12</td>
			</tr>
			<tr>
				<td>123</td>
				<td>123</td>
				<td>123</td>
				<td>123</td>
				<td>123</td>
				<td>123</td>
			</tr>
			<tr>
				<td>1234</td>
				<td>1234</td>
				<td>1234</td>
				<td>1234</td>
				<td>1234</td>
				<td>1234</td>
			</tr>
		</tbody>
	</table>
</body>
</html>

  

$(document).ready(function() {
	$(‘#dlg‘).dialog({
        left:"450px",
        top:"200px",
        title: ‘修改信息‘,
        inline:false,
        closed:true,
        width: 300,
        height: 250,
        cache: false,
        buttons:"#footer",
        shadow:false,
        modal: true,
        buttons: [{
            text: ‘保存‘,
            iconCls: ‘icon-save‘,
            handler: function () {
            	var row = $("#tab").datagrid("getSelected");
                var id = row.id;
                var content = $("#content").val();
                $.ajax({
                    type:"post",
                    url: "Handler.ashx?id="+id+"&content=" + content,
                    success: function (data) {
                        if (data == "ok") {
                            $.messager.alert("系统提示", "数据修改成功!");
                            $(‘#dlg‘).dialog(‘close‘);
                        } else {
                            $.messager.alert("系统提示", "数据修改失败!");
                            return false;
                        }
                    }
                })
            }
        }, {
            text: ‘关闭‘,
            iconCls: ‘icon-cut‘,
            handler: function () {
                $(‘#dlg‘).dialog(‘close‘);
                $("#content").val(‘‘);
            }
        }]
	});
});

  

时间: 2024-10-26 08:54:10

Easyui dialog的相关文章

easyui dialog 扩展load

1 $.extend($.fn.panel.methods, {  2     showMask: function(jq, msg){  3         return jq.each(function(){  4             var pal = $(this).panel('panel');  5             if (pal.css('position').toLowerCase() != 'absolute'){  6                 pal.cs

Easyui dialog中嵌入iframe

如果easyui dialog的地址属性用href超链接,easyui 不会加载整个url页面,只会截取url目标页的body体间的html, 如果想加载把其他页面 加载进dialog的iframe中,属性就要改用content. 引用: <link href="../css/easyui.css" rel="stylesheet" type="text/css" /> <script src="../js/jquer

easyui dialog 中嵌入html页面

最近使用easyui比较多,这个插件确实很好用.在使用时也遇到了大大小小的问题,好在都一一解决了. 记录一下今天遇到的问题. 目的:用easyui的dialog嵌入一个html页面(html中仍有要执行的脚本内容) 方法一: 使用href属性,失败. 经过测试,如果easyui dialog的地址属性用href超链接,easyui 不会加载整个url页面,只会截取url目标页的body体间的html. easyui官网上关于href属性的说明是: 属性href,类型string,一个URL,用它

easyui dialog远程加载内容完成后,进行对话内容(表单)初始化

通过查看easyui的帮助文档,dialog继承于window,window继承于panel,panel中有个onLoad事件,也就是当远程数据加载完成后,触发此事件.因此只要在此事件中对对话框中的内容进行初始化就可以了. var $addEvent = $("#addEvent"); // 初始化对话框 $addEvent.dialog({ title: '新增待办工作', width: 400, height: 250, closed: false, cache: false, h

EASYUI Dialog的基本使用

1.基本使用 代码: <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Dialog</title> <link href="/jquery-easyui-1.2.4/themes/default/easyui.css" rel="stylesheet" type="t

EasyUI Dialog 对话框

扩展自 $.fn.window.defaults.通过 $.fn.dialog.defaults 重写默认的 defaults. 对话框(dialog)是一个特殊类型的窗口,它在顶部有一个工具栏,在底部有一个按钮栏.默认情况下,对话框(dialog)只有一个显示在头部右侧的关闭工具.用户可以配置对话框行为来显示其他工具(比如:可折叠 collapsible.可最小化 minimizable.可最大化 maximizable,等等). 依赖 window linkbutton 用法 通过标记从已有

easyui dialog遮罩层

当dialog在一个iframe里时,此dialog的遮罩层也会只覆盖这个iframe,要想覆盖整个页面,就把dialog写到最外层的父页面中去,此时dialog的遮罩层会自动覆盖整个页面,若需要从子页面去获取父页面的dom对象,用parent.window.$(" ")的形式.

在easyui dialog的子页面内如何关闭弹窗

因项目需要在dialog中添加滚动条,所以就在div中加了iframe: 1 <div id="applyRefundDialog" style="display:none;overflow:hidden"> 2 <iframe id="applyframe" style="width: 100%; height: 100%;" scrolling="auto" frameborder=&

EasyUI Dialog with iFrame

HTML: <div id="myDlg" class="easyui-window" closed="true" modal="true" title="Example" style="width:500px;height:350px;"> <iframe scrolling="auto" id='myIframe' frameborder=&qu