1,級聯問題:在專案開發過程中,事件監聽的新增和刪除很重要,不然會導致一級資料老被重新整理。
**如下:
private function init():void
private function getdsjname(event:resultevent):void
5,datagrid實現雙擊檢視資訊
(1)doubleclickenabled="true" itemdoubleclick="queryparticular(event)";這個doubleclickenabled="true"必須要寫
(2)private function queryparticular(event:listevent):void
6,父視窗向子視窗中傳值***
var login:infochange=infochange(popupmanager.createpopup( this, infochange , true));
login.x=250;
login.y=150;
login.userid.text=dg.selecteditem.aa;
login.username.text=dg.selecteditem.bb;
login.interest.text=dg.selecteditem.cc;
login.birthday.text=dg.selecteditem.dd;
login是子視窗,userid.text,username.text,interest.text,birthday.text是子視窗的四個textinput,其他控制項類似使用就可以了。dg.selecteditem.aa等等是父視窗中datagrid控制項的值
7,在flex中使用moduleloder來載入或切換多個module時,常常會出現「typeerror: error #
1034=
8,amf通道問題,在本地flex程式發布到遠端機的時候,注意amf通道問題,,還有用公司平台sysadmin訪問不到資料
spring開發時所遇的亂碼問題
前幾天在測試時發現從前端訪問你資料庫出現亂碼。經過分析應該是前端和後端,後端和資料庫之間進行資料交換時編碼不一致導致的。首先,前端通過瀏覽器向後端傳輸資料有兩種途徑 我用的是spring tomcat,所以要配置spring解析url時採用utf 8編碼。tomcat預設採用iso 8859 1編碼...
學習flush與split時所遇的問題
因為region中的值都是以key來排序的,但是flush操作是生成乙個新store file hfile 那麼還怎麼保持region中key的有序呢?然後又延伸出乙個問題 flush操作生成的store file,為什麼大小不一?見下圖 與compaction有關 原因是 flush是對乙個hre...
MySql 8 0安裝與使用所遇問題記錄
初入mysql,以下記錄遇到的錯誤。在網上很多答案都是找到my.ini資料夾,可能有些人在mysql安裝路徑下找不到,其實是在 c programdata mysql mysql server 8.0下。話不多說,各大統一操作是 1 關掉服務 2 在my.ini中的 mysqld 加上 skip g...