溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

flex開發(fā)技巧匯總

發(fā)布時(shí)間:2020-06-15 16:48:02 來源:網(wǎng)絡(luò) 閱讀:426 作者:9ria 欄目:開發(fā)技術(shù)

    關(guān)于flex開發(fā)網(wǎng)上有非常多的相關(guān)信息介紹,因此我們要想學(xué)習(xí)關(guān)于flex開發(fā)的知識(shí)信息技能是一件非常簡(jiǎn)單和方便的事情。而針對(duì)于flex開發(fā)小編要告訴大家的是一些flex開發(fā)小技巧。利用這些小技巧能夠有助于我們更好的完成flex開發(fā)操作任務(wù)。具體內(nèi)容如下:
public class LoginLogController : BusinessController<LoginLog, LoginLogInfo>
   {
       public LoginLogController() : base()
       {
       }

界面部分代碼如下所示。
       //實(shí)現(xiàn)對(duì)DataGird控件的綁定操作
       function InitGrid(queryData) {
           $('#grid').datagrid({   //定位到Table標(biāo)簽,Table標(biāo)簽的ID是grid
               url: '/LoginLog/FindWithPager',   //指向后臺(tái)的Action來獲取當(dāng)前用戶的信息的Json格式的數(shù)據(jù)
               title: '用戶登陸日志',
               //下面的這些屬性如果誰(shuí)不太清楚的話我建議去官方網(wǎng)站去學(xué)習(xí)
               iconCls: 'icon-view',
               height: 450,
               nowrap: true,
               autoRowHeight: false,
               striped: true,
               collapsible: true,
               pagination: true,
               rownumbers: true,
               //sortName: 'ID',    //根據(jù)某個(gè)字段給easyUI排序
               sortOrder: 'asc',
               remoteSort: false,
               idField: 'ID',
               queryParams: queryData,  //異步查詢的參數(shù)
               columns: [[
                   { field: 'ck', checkbox: true },   //選擇
                   { title: 'ID', field: 'ID', width: 40, sortable: true },  //主鍵
                    { title: '登錄用戶ID', field: 'User_ID', width: 80, sortable: true },
                    { title: '登錄名稱', field: 'LoginName', width: 80, sortable: true },
                    { title: '真實(shí)名稱', field: 'FullName', width: 80, sortable: true },
                    { title: '日志描述', field: 'Note', width: 100, sortable: true },
                    { title: 'IP地址', field: 'IPAddress', width: 100, sortable: true },
                    { title: 'Mac地址', field: 'MacAddress', width: 120, sortable: true },
                    { title: '系統(tǒng)編號(hào)', field: 'SystemType_ID', width: 120, sortable: true },
                    { title: '記錄日期', field: 'LastUpdated', width: 120, sortable: true },
               ]],
               toolbar: [{
                   id: 'btnAdd',
                   text: '添加',
                   iconCls: 'icon-add',
                   handler: function () {                        
                       ShowAddDialog();//實(shí)現(xiàn)添加記錄的頁(yè)面
                   }
               }, '-', {
                   id: 'btnEdit',
                   text: '修改',
                   iconCls: 'icon-edit',
                   handler: function () {                        
                       ShowEditOrViewDialog();//實(shí)現(xiàn)修改記錄的方法
                   }
               }, '-', {
  flex開發(fā)的小技巧除了是小編上述的介紹之外還有很多。在網(wǎng)上相關(guān)的信息也可以找到。因此我們要想了解更多的flex開發(fā)小技巧也可以是自己通過網(wǎng)絡(luò)查找的方式來獲取。但是在這個(gè)過程中大家要注意信息真?zhèn)蔚谋鎰e,便于更好的學(xué)習(xí)flex開發(fā)知識(shí)技能


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI