I want to enable or disable checkbox in table\'s row on basis of condition.
code -
6条回答 遥遥无期 (楼主) 2021-01-01 11:03 In jsp you can do it like this: <% boolean checkboxDisabled = true; //do your logic here String checkboxState = checkboxDisabled ? "disabled" : ""; %> > 0 讨论(0) 查看其它6个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
In jsp you can do it like this:
<% boolean checkboxDisabled = true; //do your logic here String checkboxState = checkboxDisabled ? "disabled" : ""; %> >