renderer函式預設可以帶上以下引數
1、value : object
the data value for the cell.(單元格的值)
2、metadata : object
an object in which you may set the following attributes乙個可以設定下邊兩個屬性的物件)
**css : string
a css class name to add to the cell's td element.
(給單元格的td元素設定css的class名稱)
**attr : string
(給單元格元素增加乙個html的屬性)
3、record : ext.data.record
the ext.data.record from which the data was extracted.
(該欄位所在行對應的ext.data.record物件(整條記錄))
4、rowindex : number
row index(行號)
5、colindex : number
column index(列號)
6、store : ext.data.store
the ext.data.store object from which the record was extracted.
(資料來源物件 就是grid的store/ds)
一共就是六個引數
SqlCacheDependency的使用方法
步驟一 sql資料庫必須開啟servicebroker服務,首先檢測是否已經啟用servicebroker,檢測方法 select databasepropertyex 資料庫名稱 isbrokerenabled 1表示已經啟用0表示沒有啟用 步驟二 如果servicebroker沒有啟用,使用下面...
UITabBarController的使用心得
這段時間了解下uitabbarcontroller,今天把我遇到的問題和心得記錄下。網上有很多uitabbarcontroller的資料,對於一些uitabbarcontroller的基礎性知識,在這裡我就不囉嗦了。可以看這裡 今天我要說的是自己的一些不同於網上的的心得。官方的一副還是要貼出來。我也...
UITabBarController的使用步驟
初始化 uitabbarcontroller 設定uiwindow的rootviewcontroller為 uitabbarcontroller 根據具體情況,通過addchildviewcontroller方法新增對應個數的子控制器 uitabbarcontroller新增控制器的方式有2種 新增...