Home >Web Front-end >JS Tutorial >jQuery EasyUI API Chinese Documentation - Panel panel_jquery

jQuery EasyUI API Chinese Documentation - Panel panel_jquery

WBOY
WBOYOriginal
2016-05-16 18:01:301103browse

overrides defaults with $.fn.panel.defaults.


Usage Example
Creating Panel
1. Creating Panel via Markup
Creating Panel from Markup is easier. Add the 'easyui-panel' class to the

tag.
Copy code The code is as follows:

iconCls="icon-save" closable="true"
collapsible= "true" minimizable="true" maximizable=true>

panel content.


panel content.




2. Create Panel programmatically
Let us create a Panel with a toolbar in the upper right corner. .
Copy code The code is as follows:


panel content.


panel content.



$( '#p').panel({
width:500,
height:150,
title: 'My Panel',
tools: [{
iconCls:'icon-add' ,
handler:function(){alert('new')}
},{
iconCls:'icon-save'
handler:function(){alert('save')}
}]
});

Move Panel
Call the 'move' method to move the Panel to a new location.
Copy code The code is as follows:

$('#p').panel('move ',{
left:100,
top:100
});

Loading content
Let’s load the panel content via ajax and display something when loading is successful information.
Copy code The code is as follows:

$('#p').panel({
href:'content_url.php',
onLoad:function(){
alert('loaded successfully');
}
});

特性

名称

类型

说明

默认值

title

string

显示在Panel头部的标题文字。

null

iconCls

string

Panel里显示一个16x16图标的CSS类。

null

width

number

设置Panel的宽度。

auto

height

number

设置Panel的高度。

auto

left

number

设置Panel的左边位置。

null

top

number

设置Panel的顶部位置。

null

cls

string

Panel增加一个CSS类。

null

headerCls

string

Panel头部增加一个CSS类。

null

bodyCls

string

Panel身体增加一个CSS类。

null

style

object

Panel增加自定义格式的样式。

{}

fit

boolean

当设为true时,Panel 尺寸就适应它的父容器。

false

border

boolean

定义了是否显示Panel的边框。

true

doSize

boolean

设置为true,创建时Panel就调整尺寸并做成布局。

true

noheader

boolean

要是设置为truePanel的头部将不会被创建。

false

content

string

Panel身体的内容。

null

collapsible

boolean

定义了是否显示折叠按钮。

false

minimizable

boolean

定义了是否显示最小化按钮。

false

maximizable

boolean

定义了是否显示最大化按钮。

거짓

닫을 수 있음

부울

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn