国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

JavaScript中使用sencha gridpanel 編輯單元格、改變單元格顏色

2024-05-06 16:25:18
字體:
來源:轉載
供稿:網友
ExtJS中的表格功能非常強大,包括了排序、緩存、拖動、隱藏某一列、自動顯示行號、列匯總、單元格編輯等實用功能,通過本篇文章給大家介紹JavaScript中使用sencha gridpanel 編輯單元、改變單元格顏色,感興趣的朋友一起學習
 

表格GridPanel概述

      ExtJS中的表格功能非常強大,包括了排序、緩存、拖動、隱藏某一列、自動顯示行號、列匯總、單元格編輯等實用功能。

  表格由類Ext.grid.GridPanel定義,繼承自Panel,其xtype為grid。ExtJS中,表格Grid必須包含列定義信息,并指定表格的數據存儲器Store。表格的列信息由類Ext.grid.Column(以前是由Ext.grid.ColumnModel定義)、而表格的數據存儲器由Ext.data.Store定義,數據存儲器根據解析的數據不同分為JsonStore、SimpleStroe、GroupingStore等。

下面通過一段代碼給大家介紹sencha gridpanel 編輯單元,具體代碼如下所示:

{xtype: 'gridpanel',region: 'north',height: 150,title: 'My Grid Panel',store: 'A_Test_Store',columns: [{xtype: 'gridcolumn',dataIndex: 'Name',text: 'Name',editor: {xtype: 'textfield'}},{xtype: 'gridcolumn',dataIndex: 'Content',text: 'Content'},{xtype: 'gridcolumn',dataIndex: 'Time',text: 'Time'}],plugins: [Ext.create('Ext.grid.plugin.CellEditing', {clicksToEdit: 1, //點擊單元格編輯listeners: {beforeedit: {fn: me.onCellEditingBeforeEdit,scope: me},validateedit: {fn: me.onCellEditingValidateedit,scope: me}}})]}onCellEditingBeforeEdit: function(editor, e, eOpts) {//動態賦值用.正常情況下不需要該事件.   e.record.data[e.field]= "my test";e.value="my test";e.record.commit(); //提交,不提交無效}onCellEditingValidateedit: function(editor, e, eOpts) {if(e.row==1) //驗證邏輯{e.cancel=true; //取消e.record.data[e.field] = e.value;}e.record.commit();}

下面一段代碼是關于sencha gridpanel改變單元格顏色

標題列包含 審核通過則綠色,包含拒絕為紅色:

{xtype: 'gridcolumn',renderer: function(value, metaData, record, rowIndex, colIndex, store, view) {metaData.tdAttr = 'data-qtip="'+record.data.Content+'"';if(record.data.Content.indexOf('審核通過')!=-1){metaData.style="color:green";}else if(record.data.Content.indexOf('拒絕')!=-1){metaData.style="color:red";}return value;},width: '*',dataIndex: 'Title',text: '標題'}
 


注:相關教程知識閱讀請移步到JavaScript/Ajax教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 江川县| 平谷区| 山丹县| 惠州市| 托里县| 平度市| 台安县| 上林县| 黎平县| 乳山市| 越西县| 晋城| 太康县| 铜陵市| 临泽县| 盖州市| 乌鲁木齐县| 临清市| 徐州市| 隆尧县| 和顺县| 游戏| 呼和浩特市| 连平县| 怀安县| 萨迦县| 珲春市| 青河县| 井陉县| 云浮市| 大姚县| 柏乡县| 新绛县| 娱乐| 黄山市| 大厂| 合川市| 石家庄市| 永胜县| 杂多县| 溧阳市|