fit : 조건 반대로 되어있어서 변경.

dev
Leeyh1121 5 months ago
parent 36603d74fe
commit e11449c35d

@ -471,7 +471,7 @@
col0 = $(this).find("td").eq(0).find("input"); col0 = $(this).find("td").eq(0).find("input");
col0val = $(this).find("td").eq(0).find("input").val(); col0val = $(this).find("td").eq(0).find("input").val();
if(col0val == "" || col0val == null){ if(col0val != "" && col0val != null){
col0.prop("checked",true); col0.prop("checked",true);
} }
@ -497,7 +497,7 @@
col0 = $(this).find("td").eq(0).find("input"); col0 = $(this).find("td").eq(0).find("input");
col0val = $(this).find("td").eq(0).find("input").val(); col0val = $(this).find("td").eq(0).find("input").val();
if(col0val == "" || col0val == null){ if(col0val != "" && col0val != null){
col0.prop("checked",true); col0.prop("checked",true);
} }

Loading…
Cancel
Save