Lines Matching full:checkbox
135 var checkbox = document.createElement('input');
136 checkbox.setAttribute('type', 'checkbox');
137 checkbox.checked = true;
138 checkbox.onclick = function() {
139 setCurveVisible(checkbox, curve_id, 'all');
141 tdCheckbox.appendChild(checkbox);
145 checkLeft.setAttribute('type', 'checkbox');
155 checkRight.setAttribute('type', 'checkbox');
177 this.setVisible = function(checkbox, id, channel) {
181 curveBuffer[index].channel[i].visible = checkbox.checked;
184 curveBuffer[index].channel[channel].visible = checkbox.checked;
479 function setCurveVisible(checkbox, id, channel) {
480 drawContext.setVisible(checkbox, id, channel);