开发者

How to check/uncheck a checkbox with javascript in lotus notes

How to check/uncheck a checkbox with javascript in lotus notes?

I´v开发者_开发问答e tried a lot of different javascript codes but none worked....

the input type checkbox is insidea form called form1..

thanks


View the source for the Web page produced by Domino and determine what the name of your checkbox is. You're looking for an HTML tag called with a type="checkbox". Get the id of that checkbox and use that id to replace the "" part of the code below.

document.form1.<YOUR CHECKBOX ID HERE>.checked = true;

For example, if the checkbox is named "mycheckbox", the code would be:

document.form1.mycheckbox.checked = true;

If you need to toggle the checkbox between checked and unchecked, you can use this code, which just sets the checkbox to the opposite state.

document.form1.mycheckbox.checked = !document.form1.mycheckbox.checked;  
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜