[ozReport] 특정 페이지 조건문을 통해서 보이거나 안 보이게 하는 방법 / How to make it visible or invisible through a specific page conditional statement
-
반응형
var year = This.GetDataSetValue("paramInfo.YEAR");
var hakgi = This.GetDataSetValue("paramInfo.HAKGI");
var yyHakgi = year + "" + hakgi
if(yyHakgi > 20221){
This.SetEnable(false);
}else{
This.SetEnable(true);
}