Javaを使用して動的にhtmlテーブルを作成していて、条件に基づいてチェックボックスを自動的にオンにしたいのですが、どのような場合でもチェックボックスがオンになっています。
以下は私が使用するコードです:
if(isactive.equalsIgnoreCase("Y")){
checked="checked";
}
else{
checked="false";
}
およびチェックボックスコード:
htmlTable.append("<td align=\"left\" ><input type=\"checkbox\" name=\"headername_"+loopvariable+"\" id=\"headername_"+loopvariable+"\" value="+id+" checked="+checked+">"+columnname.toUpperCase()+"<br></td>");
if the value is not `Y` than uncheck the checkbox is my requirement but it is not working.
方法を教えてください。
よろしく