cool_calendar.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="<img src="../form/calendar.gif" class="DATE" align=absmiddle border=0 style="cursor:hand" value=""+ITEM_NAME.value.replace(""","&quot;")+"" title="日期控件:"+ITEM_NAME.value.replace(""","&quot;")+"">";
  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).value = ITEM_NAME.value;
  27.     oSelection(0).title = "日期控件:"+ITEM_NAME.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).value;
  43.   
  44.   }
  45.   ITEM_NAME.focus();
  46. }
  47. </script>
  48. </head>
  49. <body topmargin="0" onload="LoadDo();">
  50. <table border="0" cellspacing="1" width="100%" class="small" bgcolor="#ffffff" cellpadding="3" align="center">
  51.   <tr class="TableContent">
  52.       <td nowrap><b>对应的输入框控件</b> 名称:
  53.       </td>
  54.       <td nowrap>
  55.        <Input name="ITEM_NAME" type="text" class="SmallInput" size="20">
  56.       </td>
  57.   </tr>
  58.   <tr class="TableData">
  59.       <td colspan="2">说明:通过日历控件选择的日期将回填到该输入框中
  60.       </td>
  61.   </tr>
  62.   <tr>
  63.       <td class="TableControl" colspan="2" align="center">
  64.         <input type="submit" onclick="my_submit();" value="确 定" class="SmallButton">
  65.       </td>
  66.   </tr>
  67. </table>
  68. </body>
  69. </html>