cool_checkbox.aspx
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" %>
  2. <html>
  3. <head>
  4. <title>选择框设定</title>
  5. <script>
  6. function my_submit()
  7. {
  8.   if(ITEM_NAME.value=="")
  9.   {
  10.      alert("控件名称不能为空");
  11.      return;
  12.   }
  13.   if(edit_flag==0)
  14.   {
  15.      var parent_window = parent.dialogArguments;
  16.      var control_html="<input type=checkbox title=""+ITEM_NAME.value.replace(""","&quot;")+"" "+ITEM_VALUE.value+">";
  17.      parent_window.EDIT_HTML.insertHtml(control_html);
  18.   }
  19.   else
  20.   {
  21.      oSelection = dialogArguments.document.selection.createRange();
  22.      sRangeType = dialogArguments.document.selection.type;
  23.    
  24.      if (sRangeType == "Control") 
  25.      {
  26.     oSelection(0).title = ITEM_NAME.value;
  27.     oSelection(0).checked = ITEM_VALUE.value;
  28.       }
  29.   }
  30.   window.close();
  31. }
  32. //-- 获取控件属性 --
  33. var edit_flag=0;
  34. function LoadDo()
  35. {
  36.   oSelection = dialogArguments.document.selection.createRange();
  37.   sRangeType = dialogArguments.document.selection.type;
  38.   
  39.   if (sRangeType == "Control") 
  40.   {
  41.    edit_flag=1;
  42.    ITEM_NAME.value = oSelection(0).title;
  43.    ITEM_VALUE.selectedIndex =  oSelection(0).checked;
  44.   
  45.   }
  46.   ITEM_NAME.focus();
  47. }
  48. </script>
  49. </head>
  50. <body topmargin="0" onload="LoadDo();">
  51. <table border="0" cellspacing="1" width="100%" class="small" bgcolor="#ffffff" cellpadding="3" align="center">
  52.   <tr class="TableContent">
  53.       <td nowrap>控件名称:
  54.       </td>
  55.       <td nowrap>
  56.        <Input name="ITEM_NAME" type="text" class="SmallInput" size="20">
  57.       </td>
  58.   </tr>
  59.   <tr class="TableContent">
  60.       <td nowrap>默认值:
  61.       </td>
  62.       <td nowrap>
  63. <select class="SmallSelect" name="ITEM_VALUE">
  64. <option value="">不选中
  65. <option value="checked">选中
  66. </select>
  67.       </td>
  68.   </tr>
  69.   <tr>
  70.       <td class="TableControl" colspan="2" align="center">
  71.         <input type="submit" onclick="my_submit();" value="确 定" class="SmallButton">
  72.       </td>
  73.   </tr>
  74. </table>
  75. </body>
  76. </html>