othertreatments.ascx

来自「医疗决策支持系统」· ASCX 代码 · 共 33 行

ASCX
33
字号
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="OtherTreatments.ascx.cs" Inherits="Caisis.UI.Modules.Prostate.Eforms.OtherTreatments" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
<%@ Register TagPrefix="euc" Namespace="Caisis.UI.Core.Classes.CustomControls" Assembly="Caisis.UI" %>

<script type="text/javascript"> 
function showOtherTreatment(divId, treatmentCheckbox)
{
	if(treatmentCheckbox.checked == true)
	{
		document.getElementById(divId).style.display = 'block';
	}
	else
	{
		document.getElementById(divId).style.display = 'none';
	}
}

</script>
<link href="../../../StyleSheets/EformStyles.css" rel="stylesheet" type="text/css">
<a name="OtherTreatments" /><span class="controlBoxTitle">Other Treatments</span><br>
<table width="650" border="0" cellspacing="0" cellpadding="5" class="eformLargePopulatedTable">
  <tr>
    <td><label>
      <input id="MedTxCheckbox" type="checkbox" name="MedTxCheckbox" value="true" onclick="showOtherTreatment('MedTxDiv', this)" />
    Show Medical Therapy</label></td>
    <td><label>
      <input id="RadTxCheckbox" type="checkbox" name="RadTxCheckbox" value="true" onclick="showOtherTreatment('RadTxDiv', this)" />
      Show Radiation Therapy</label></td>
    <td><label>
      <input id="BrachyTxCheckbox" type="checkbox" name="BrachyTxCheckbox" value="true" onclick="showOtherTreatment('BrachyTxDiv', this)" />
      Show BrachyTherapy </label></td>
  </tr>
</table>
<br/><br/><br/>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?