加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

dojo小例子(36)ResizableDialog widget可缩放对话框

发布时间:2020-12-16 21:21:31 所属栏目:百科 来源:网络整理
导读:给dialog增加缩放功能 define(["dojo/_base/declare","dijit/_WidgetBase","dijit/_TemplatedMixin","dijit/_WidgetsInTemplateMixin","dojox/layout/ResizeHandle","dojox/widget/DialogSimple"],function(declare,_WidgetBase,_TemplatedMixin,_WidgetsInTe
给dialog增加缩放功能
define([
	"dojo/_base/declare","dijit/_WidgetBase","dijit/_TemplatedMixin","dijit/_WidgetsInTemplateMixin","dojox/layout/ResizeHandle","dojox/widget/DialogSimple"
],function(declare,_WidgetBase,_TemplatedMixin,_WidgetsInTemplateMixin,ResizeHandle,DialogSimple){

	return declare([DialogSimple],{
		templateString: '<div class="dijitDialog" role="dialog" aria-labelledby="${id}_title">	<div data-dojo-attach-point="titleBar" class="dijitDialogTitleBar">		<span data-dojo-attach-point="titleNode" class="dijitDialogTitle" id="${id}_title"				role="heading" level="1"></span>		<span data-dojo-attach-point="closeButtonNode" class="dijitDialogCloseIcon" data-dojo-attach-event="ondijitclick: onCancel" title="${buttonCancel}" role="button" tabindex="-1">			<span data-dojo-attach-point="closeText" class="closeText" title="${buttonCancel}">x</span>		</span>	</div>	<div data-dojo-attach-point="containerNode" class="dijitDialogPaneContent"></div>	<span dojoAttachPoint="resizeHandle" class="dojoxFloatingResizeHandle"></span></div>',resizable: false,resizeAxis: "xy",postCreate: function(){
			this.inherited(arguments);
			if(!this.resizable){
				this.resizeHandle.style.display = "none"; 	
			}
		},startup: function(){
			this.inherited(arguments);
			if (this.resizable) {
				this.containerNode.style.overflow = "auto";
				this._resizeHandle = new ResizeHandle({
					targetId: this.id,resizeAxis: this.resizeAxis
				},this.resizeHandle);
			}
		},hide: function() {
			this.onHide();
			this.inherited(arguments);
		},onHide: function () {
			
		}
		
	});
});
<div data-dojo-type="my/ResizableDialog" id="selectDlg" data-dojo-props="title:'选择',resizable:true,href:'mot/selectDlg.html'"></div>
<button type="button" data-dojo-type="dijit/form/Button" data-dojo-props="iconClass:'dijitIconSearch'" onclick="dijit.byId('selectDlg').show();">选择</button>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读