Lines Matching refs:id

171 function jmolButton(script, label, id, title) {  argument
173 if (id == undefined || id == null)
174 id = "jmolButton" + _jmol.buttonCount;
179 …var t = "<span id=\"span_"+id+"\""+(title ? " title=\"" + title + "\"":"")+"><input type='button' …
191 labelHtml, isChecked, id, title) { argument
193 if (id == undefined || id == null)
194 id = "jmolCheckbox" + _jmol.checkboxCount;
208 …ar t = "<span id=\"span_"+id+"\""+(title ? " title=\"" + title + "\"":"")+"><input type='checkbox'…
219 t += "<label for=\"" + id + "\">" + labelHtml + "</label>" +eospan;
229 function jmolRadioGroup(arrayOfRadioButtons, separatorHtml, groupName, id, title) { argument
249 var t = "<span id='"+(id ? id : groupName)+"'>";
256 …o[1], radio[2], separatorHtml, groupName, (radio.length > 3 ? radio[3]: (id ? id : groupName)+"_"+…
258 … t += _jmolRadio(radio, null, null, separatorHtml, groupName, (id ? id : groupName)+"_"+i, title);
268 function jmolRadio(script, labelHtml, isChecked, separatorHtml, groupName, id, title) { argument
272 …var t = _jmolRadio(script, labelHtml, isChecked, separatorHtml, groupName, (id ? id : groupName + …
278 function jmolLink(script, label, id, title) { argument
280 if (id == undefined || id == null)
281 id = "jmolLink" + _jmol.linkCount;
286 …var t = "<span id=\"span_"+id+"\""+(title ? " title=\"" + title + "\"":"")+"><a name='" + id + "' …
295 function jmolCommandInput(label, size, id, title) { argument
297 if (id == undefined || id == null)
298 id = "jmolCmd" + _jmol.cmdCount;
304 …var t = "<span id=\"span_"+id+"\""+(title ? " title=\"" + title + "\"":"")+"><input name='" + id +…
305 …ress(event,\""+id+"\"" + _jmol.targetText + ")'><input type=button value = '"+label+"' onclick='jm…
311 function _jmolCommandKeyPress(e, id, target) { argument
314 jmolScript(document.getElementById(id).value, target)
320 function jmolMenu(arrayOfMenuItems, size, id, title) { argument
322 if (id == undefined || id == null)
323 id = "jmolMenu" + _jmol.menuCount;
333 …var t = "<span id=\"span_"+id+"\""+(title ? " title=\"" + title + "\"":"")+"><select name='" + id
851 function jmolSetXHTML(id) { argument
855 if (id){
856 _jmol.XhtmlElement = document.getElementById(id)
979 function _jmolRadio(script, labelHtml, isChecked, separatorHtml, groupName, id, title) { argument
991 var t = "<span id=\"span_"+id+"\""+(title ? " title=\"" + title + "\"":"")+"><input name='"
992 + groupName + "' id='"+id+"' type='radio' onclick='_jmolClick(" +
1000 t += "<label for=\"" + id + "\">" + labelHtml + "</label>" +eospan + separatorHtml;
1091 var id = chkMaster;
1092 if(typeof(id)=="number")id = "jmolCheckbox" + id;
1093 chkMaster = document.getElementById(id);
1094 if (!chkMaster)alert("jmolSetCheckboxGroup: master checkbox not found: " + id);
1095 var m = _jmol.checkboxMasters[id] = {};
1099 var id = arguments[i];
1100 if(typeof(id)=="number")id = "jmolCheckbox" + id;
1101 checkboxItem = document.getElementById(id);
1102 if (!checkboxItem)alert("jmolSetCheckboxGroup: group checkbox not found: " + id);
1103 m.chkGroup[id] = checkboxItem;
1104 _jmol.checkboxItems[id] = m;
1120 if ((allOn || allOff) && _jmol.checkboxItems[m.chkMaster.id])
1121 _jmolNotifyMaster(_jmol.checkboxItems[m.chkMaster.id])
1129 if (_jmol.checkboxMasters[item.id])
1130 _jmolNotifyGroup(_jmol.checkboxMasters[item.id], isOn)
1137 if(_jmol.checkboxMasters[ckbox.id])
1138 _jmolNotifyGroup(_jmol.checkboxMasters[ckbox.id], ckbox.checked)
1139 if(_jmol.checkboxItems[ckbox.id])
1140 _jmolNotifyMaster(_jmol.checkboxItems[ckbox.id])
1409 function jmolSaveOrientation(id, targetSuffix) { argument
1411 …return _jmol["savedOrientation"+id] = jmolGetPropertyAsArray("orientationInfo","info",targetSuffix…
1414 function jmolRestoreOrientation(id, targetSuffix) { argument
1416 var s=_jmol["savedOrientation"+id]
1422 function jmolRestoreOrientationDelayed(id, delay, targetSuffix) { argument
1425 var s=_jmol["savedOrientation"+id]