Nexacro.팝업창 - 에서 Main창 Dataset 공유하기

 

this.fv_objParentDs = this.getOwnerFrame().form.opener.ds_srvyRcverMng;
this.grd_srvyRcverMng.set_binddataset(this.fv_objParentDs);  <-- Grid 에 binding 시키기

Posted by 농부지기
,

*. Nexacro.Grid-getRowType() 관련

 

1. Grid.맨 왼쪽 checkbox가 존재 할 때..

   - 정의 : 이 checkbox가 변경 되어도 Dataset row type은 normal 상태로 유지하고 싶은 경우

   - 변수선언

     this.fv_rowTypeCheckRow;  //checkbox가 check전 RowType을 보존할 변수

   - Event Script

     dataset.cancolumnchange = function(obj:nexacro.NormalDataset,e:nexacro.DSColChangeEventInfo)
     {
          if (e.columnid == "CHK") this.fv_stateCheckRow = obj.getRowType(e.row);
     };

   - dataset.oncolumnchanged = function(obj:nexacro.NormalDataset,e:nexacro.DSColChangeEventInfo)
     {
        if (e.columnid == "CHK" && this.fv_rowTypeCheckRow == Dataset.ROWTYPE_NORMAL)
        {
                obj.set_updatecontrol(false);
                obj.setRowType(e.row, Dataset.ROWTYPE_NORMAL);
                obj.set_updatecontrol(true);
        }
    };

 

Posted by 농부지기
,

제목 : Oracle-Function. Table function. Table return

 

Posted by 농부지기
,

nexacro.ImageViewer 이미지 연동하기

 

1. web brower에서 만 보여줄 경우

   this.img_nm.set_image("url('/resources/images/cs/test_png')");

   또는

   this.img_nm.set_image("url('http://localhost:8080/resources/images/cs/test_png')");

 

2. nexa 전용 brower에서 보여줄 경우

   this.img_nm.set_image("url('http://localhost:8080/resources/images/cs/test_png')");

   - 반드시 절대 경로가 필요

Posted by 농부지기
,

 

1. 오토메틱 클릭커 설치

2. 승인처리

2번

 

3. 승인-오버레이 권한 허용

3번

4. 오토매틱 설정 시작

4번

5. 오토매틱 사용 설정

5번

6. 오토매틱 사용 설정

6번

7. 오토매틱 사용확인 후 종료

7번

8. 바탕화면-오토매틱 다시 실행

8번

9. 자동열기설정-버튼 클릭

9번

10. Final Fantasy [v]
     (체크 시 FFXV 실행 시 오토메틱도
      자동 실행 됨)

10번

11. (o)다중 타깃모드 열기 설정

11번

12. FFXV 상점가서 [+]버튼 클릭

12번

13. [1] 클릭 하기 -> 딜레이 시작 클릭

13번

14. 딜레이 클릭 

14번

15. 500[밀리초] 하면 0.5초마다 클릭됨

16. [>]버튼 클릭 하면 실행 됨

16번

이제 손가락 지문 아끼세요.

이놈에 노가다 게임...

옛날 갤럭시 게임이 생각나게 하네..ㅋㅋ

 

 

 

'유틸리티 > 유틸-기타' 카테고리의 다른 글

Ghost64.exe - windows10 backup  (1) 2019.11.23
Find In Files (파일내부 검색)  (0) 2018.12.20
유틸리티-MovieMaker  (1) 2017.09.26
토렌토 uTorrent_3-4-9-42973  (0) 2017.01.23
Posted by 농부지기
,

 

// 마지막 컴포넌트 데이터셋 업데이트

// 아래 script는 frame이 존재하면서, MDI 에서  화면 [x] 닫기 버튼을 클릭 시 활용

this.objApp = this.gfn_getApplication();

 

var curComp = this.objApp.av_FrameWork[sFormId].form.getFocus();
if (this.gfn_isNotNull(curComp)) {
   if (curComp instanceof nexacro.Calendar
      || curComp instanceof nexacro.Combo
      || curComp instanceof nexacro.Edit
      || curComp instanceof nexacro.Grid
      || curComp instanceof nexacro.ListBox
      || curComp instanceof nexacro.MaskEdit
      || curComp instanceof nexacro.Radio
      || curComp instanceof nexacro.Spin
      || curComp instanceof nexacro.TextArea) {
      curComp.updateToDataset();
    }
}

 

var pForm  = nexacro.Form.prototype;

pForm.gfn_getApplication = function()
{
var objApp = nexacro.getApplication();
return objApp;
}

Posted by 농부지기
,

1. Grid.각 Row별 Height 자동 조정 (값에 따라서 Height자동 조정)

    - Grid.속성 : autosizingtype = row

                    cellsizingtype   = none

                    extendsizetype = row

    - Grid.Cell 속성 : display = textareacontrol

                          edittype = textarea

                          wordWrap = char

                          textareascrolltype = vertical

                          autosizerow = limitmin   (text가 한줄일 경우 height의 최소 size 처리 속성)

 

 

 

 

 

'Nexacro-Grid > Grid' 카테고리의 다른 글

Nexacro.Grid - cell 좌표  (3) 2018.01.16
Nexacro-Grid. format  (0) 2017.08.18
nexacro.Grid cell drag & drop  (0) 2017.03.30
Grid.sort 개발중  (0) 2017.02.24
Nexacro Grid - 한컬럼에 여러줄 보여주기  (0) 2017.01.22
Posted by 농부지기
,

[ Nexacro Grid-combo 선택 시 바로 값 반영하기 ]

 

1. 보통 Nexacro는 Grid에서 combo를 선택하면 바로 값이 dataset에 반영이 되지 않는다.

   셀을 이동하거나, grid에서 focus가 빠져 나오게 되면 combo에 선택된 값이 dataset에 반영 된다.

 

2. Nexacro Grid-combo 선택 시 바로 값 반영하기

   - Grid.속성.autoupdatetype=comboselect   를 선택 하면 바로 combo를 선택과 동시에 바로 dataset에 반영 된다.

   - 참고, 보통인 경우에는 위 속성이 필요 하지 않다.

     그런데, 선택된 combo값에 의해서 다른 속성들이 변경 되어야 하는 경우에는 꼭 필요하다.

     (사용자는 combo를 선택 했는데.. 이 값에 의해서 컬럼들이 변경이 되어야 하는데 변경 되지 않고

       cell을 이용해야만 된다면 사용자는 complain 을 표출하게 된다.)

Posted by 농부지기
,

[ Grid-cell 한번클릭 시 바로 focus위치 ]

 

1. 참고 : Grid 기본 속성이 cell을 두번 클릭 해서 해당 cell에 focus가 위치 되고 입력가능 상태가 된다.

 

2. Grid에 Cell을 한번클릭으로 focus가 위치 되고 입력가능상태로 하기 위해서는

   Grid.속성.autoenter=select   로 설정하면 됨

 

 

'Nexacro-Grid > 자체속성' 카테고리의 다른 글

Nexacro.Grid Scroll 처리  (0) 2017.06.22
Nexacro.Grid - scrollbar 관리  (0) 2017.02.09
Posted by 농부지기
,

[ Nexacro-Grid 특정 Cell에 Mouseover시 컬러 변경 ]

 

1. 정의 : Grid에서 특정 Cell에 Mouseover시 font color를 Blue 및 font Underline처리 하기

            다시 Mouse가 빠져나오면 원래 font color로 변경 되고 Underline도 살아지게 처리

 

2. 방법 :

   a. css 추가

.Grid .body .row .cell.webLink[status=mouseover]
{
background : #f6f6f6;
-nexa-text-decoration : underline;
color : blue;

}

   b. Grid.cell속성.Information > cssClass 에 'webLink' 라고 주면 됨

Posted by 농부지기
,