設定表體某行某字段的可編輯屬性?

2021-08-10 06:41:40 字數 484 閱讀 1923

1.前台ui實現billmodelcelleditablecontroller類,會新增乙個方法:

public boolean iscelleditable(boolean value, int row, string itemkey)

此方法在單據進行編輯狀態時生效

比如,要想第3行列名為myname的那一列不可編輯,可改為:

public boolean iscelleditable(boolean value, int row, string itemkey)

return !(row==3 &&"myname".equals(itemkey));

}2.在clientui的initeventlistener方法中(如果沒有,請override父類的),加入對錶體的監聽:

getbillcardpanel().getbillmodel().setcelleditablecontroller(this);

表的字段設定

今天看了乙個帖子 主題 用物件導向思想設計資料庫 有感,說的很好。學到不少,如果在乙個商品類中加入標記字段的話,要打破類的原則 單一原則。在想到資料庫設計,如果在商品這個表中來存放哪些商品是被推薦到首頁的,每次開啟首頁都要檢索商品這張表,如果商品這張表的資料是千萬呢,可怕了。由此想到了我們論壇的設計...

MySQL中 如何查詢表名中包含某字段的表

select table name from information schema.tables where table schema tablename and table type base table and table name like copy information schema 是m...

MySQL中 如何查詢表名中包含某字段的表

select table name from information schema.tables where table schema tablename and table type base table and table name like copy information schema 是m...