ExtJS 4 【Ext.container.Viewport】

 

Ext.onReady(function(){
	Ext.create(‘Ext.container.Viewport‘, {
		layout: ‘border‘,
		items: [{
			title: ‘1‘,
			region: ‘north‘,
			html: ‘ <a href="../../Default.html">首页</a>‘,
			height: 100
		}, {
			title: ‘2‘,
			region: ‘west‘,
			width: 150,
			html: ‘left‘
		}, {
			title: ‘3‘,
			html: ‘middle‘,
			region: ‘center‘
		}]
	});
});
时间: 2024-10-06 03:45:50

ExtJS 4 【Ext.container.Viewport】的相关文章

ExtJS 4 【Ext.tab.Panel】

  Ext.onReady(function () { Ext.create('Ext.tab.Panel', { title: 'Ext.tab.Panel 示例', frame: true, height: 150, width: 300, activeTab: 1, renderTo: 'content', items: [ { title: '1', html: '1' }, { title: '2', html: '2' }, { title: '3', html: '3' } ] }

ExtJS 4 【Ext.toolbar.Toolbar】

<input type="button" id="EnableToolbar" value="启用工具栏" /> <input type="button" id="DisableToolbar" value="停用工具栏" /> <br/> <div id="toolbar"></div> .csharpco

ExtJS 4 【Ext.menu.Menu】

<div id="toolbar"></div>   .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin

ExtJS 4 【Ext.panel.Panel】

Ext.panel.Panel.html <div id="content"></div> .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csha

ExtJS 4 【Ext.Msg.alert】

function ShowMsg() { Ext.MessageBox.alert("消息", "您好!"); } .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;

ExtJs4 笔记(9) Ext.Panel 面板控件、 Ext.window.Window 窗口控件、 Ext.container.Viewport 布局控件 (转 )出处:[Lipan] (http://www.cnblogs.com/lipan/)

本篇讲解三个容器类控件. 一.面板控件 Ext.Panel 一个面板控件包括几个部分,有标题栏.工具栏.正文.按钮区.标题栏位于最上面,工具栏可以在四个位置放置,围绕中间部分正文,按钮区位于最小方.下面介绍几个基本配置项: 1.title:设置面板标题文本. 2.tbar,lbar,rbar,bbar:分别设置上.左.右.下四个部位的工具栏. 3.html,items:前者用来设置正文部分的html,后者设置正文部分的ext控件. 4.buttons:设置按钮区的按钮. 下面看看面板生成代码:

ExtJS 4 【Ext.data.proxy.Ajax】

namespace ExtJSProject.WebApi.Models { [Serializable] [DataContract] public class Person { [DataMember] public string Name { get; set; } [DataMember] public int Age { get; set; } } }   namespace ExtJSProject.WebApi.Controllers { [RoutePrefix("api/Per

Extjs MVC架构 (官方文档翻译)【带源码】

原文地址:http://docs.sencha.com/extjs/4.2.5/#!/guide/application_architecture [翻译 by 明明如月 QQ 605283073  源码在文章最后] 大型客户端应用经常比较难写.难组织.难维护. 当你添加更多的函数(功能)和开发人员时它们容易失去控制. Ext JS 4 带来了新的应用架构,不仅能够帮助组织你的代码同时也能够减少代码量. 我们的应用架构遵循MVC模式.有很多MVC架构,它们之间也彼此有少许区别. 这里我们定义我们

【extjs6学习笔记】1.7 初始:加载第三方库

https://www.sencha.com/blog/integrating-ext-js-with-3rd-party-libraries-2/ Introduction Ext JS provides a lot of built-in components right out of the box that are highly customizable. If it's not in the framework, you can easily extend the classes or