随笔分类 -  Ext.Net

Coolite
摘要:Coolite中GridPanel自带的分页与GridView的分页一样,都是把所有数据全部读出放至内存中。本文使用数据库中储存过程的方式与GridPanel配合完成,每次访问仅读出分页的数据。前台: <ext:Store ID="Store1" OnRefreshData="Store1_RefershData" runat="server" AutoLoad="true"> <... 阅读全文
posted @ 2010-07-25 00:19 海乐学习 阅读(2151) 评论(2) 推荐(1) 编辑
摘要:Coolite 中的ComboBox控件示例,这里写出几个常用方法:一、基本用法:<ext:ComboBox ID="cboSelectCol" runat="server" AllowBlank="false" Editable="false"FieldLabel="检索条件" EmptyText="请选择检索条件" ><Items><ext:ListItem Te... 阅读全文
posted @ 2010-07-19 11:02 海乐学习 阅读(2149) 评论(0) 推荐(0) 编辑
摘要:效果图:前台部份:<ext:Store ID="Store1" runat="server" AutoLoad="false" > <Reader> <ext:JsonReader ReaderID="id"> <Fields> <ext:RecordField Name="id" Type="String" Mapping="id" />... 阅读全文
posted @ 2010-07-18 16:17 海乐学习 阅读(1511) 评论(0) 推荐(0) 编辑
摘要:1.将FCK加入到系统中   (1)工程引用FredCK.FCKeditorV2.dll  (2)将fckeditor文件夹考至工程目录下  (3)在页面上写<FCKeditorV2:FCKeditor ID="fckHtmlEditor" runat="server" Height="600" Width="880"/>后台取值:    string str=this.fckHtml... 阅读全文
posted @ 2010-07-18 16:16 海乐学习 阅读(424) 评论(0) 推荐(0) 编辑