[ 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 농부지기
,

[ Nexacro Grid - Cell에 image보여주기 ]

 

1. displaytype=imagecontrol

2. textexpr에

   expr:Column0=="A"?"theme://images/chk_WF_Box_DS.png":"theme://images/img_WF_Treecollapse.png"

Posted by 농부지기
,
[ Nexacro.Grid-Cell Merge ]

1. 정의 : Grid Cell Merge는 좌/우,  위/아래  로 해서 Merge를 할 수 있다.

2. 이슈
   . Grid cell 속성에 subpress에 값이 정의 되어 있으면 setFakeMerge()함수가 정상적으로
     수행되지 않는다.

3. Merge 해제
   . 한번더 수행 하면 해지 된다.

4. Merge수행 예제

   


Posted by 농부지기
,

[ Nexacro.Grid - 특정 셀에 여러줄일 경우 ]



'Nexacro-Grid > cell 속성 관련' 카테고리의 다른 글

Nexacro Grid - Cell에 image보여주기  (0) 2019.04.12
Nexacro.Grid-Cell Merge  (0) 2017.03.30
Nexacro.Grid - cell size(width)조정  (0) 2017.02.09
Nexacro Grid - 좌.우 라인 제거하기  (0) 2017.01.22
Grid에서 Cell선택  (0) 2017.01.18
Posted by 농부지기
,

[ Nexacro.Grid - cell size(width)조정 ]


Grid cell size 변경

grdItem.setFormatColProperty(0, "size", "0" );

Posted by 농부지기
,

[  ◎ Grid 좌.우 라인 제거하기 ]     

 

 

 
 

컬럼.Property.linetype = onlyhorz

 

Posted by 농부지기
,

** Grid에서 Cell선택 **



* Grid에서 row선택방식이 아닌 cell선택방식일 경우 .. script에서 cell선택 방법 *


//Grid에 Row위치, 및 Cell위치

function fn_setGridCellPos(nRow, sColNm){

        ds_modelRequest.rowposition = nRow;

        grd_modelRequest.setCellPos(grd_modelRequest.getBindCellIndex("body",sColNm));

        grd_modelRequest.vscrollbar.pos = nRow;

}

Posted by 농부지기
,