Skip to content

Instantly share code, notes, and snippets.

@styson
Created July 15, 2010 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save styson/de18d011651653b6efcc to your computer and use it in GitHub Desktop.
Save styson/de18d011651653b6efcc to your computer and use it in GitHub Desktop.
<%@ Language=JavaScript %>
<% Response.Buffer = true %>
<%
///////////////////////////////////////////////////////////////////////////////
// Product : Dovetail Admin
//
// Series : Dovetail Software Web Series(tm)
//
// Name : workgroup.asp
//
// Description : Manage Employee Workgroup Information
//
// Author : Dovetail Software Software, Inc.
// 4807 Spicewood Springs Rd., Building 4, Suite 200
// Austin, TX 78759
// (512) 610-5400
// EMAIL: support@dovetailsoftware.com
// www.dovetailsoftware.com
//
// Platforms : This version supports Clarify 4.5 and later
//
// Copyright (C) 2010 Dovetail Software Software, Inc.
// All Rights Reserved.
///////////////////////////////////////////////////////////////////////////////
%>
<!--#include file="../include/inc_page_init.asp"-->
<!--#include file="../include/inc_utility.asp"-->
<html>
<head>
<meta http-equiv="expires" content="0">
<link rel="stylesheet" href="../stylesheets/webagent.css" type="text/css">
<script language="javascript" src="../code/tab_builder.js"></script>
<script language="javascript" src="../code/open_window.js"></script>
<script language="javascript" src="../code/datetime_picker.js"></script>
<script language="javascript">
var arrTabs = [];
arrTabs.push(new TabItem("Member Data", "tab_member_data"));
arrTabs.push(new TabItem("Locale", "tab_locale"));
arrTabs.push(new TabItem("Privileges", "tab_privilege"));
arrTabs.push(new TabItem("Notifications", "tab_notification"));
arrTabs.push(new TabItem("Calendar", "tab_calendar"));
arrTabs.push(new TabItem("Queues", "tab_queues"));
arrTabs.push(new TabItem("Members", "tab_members"));
var objTabs = new TabCollection(4,20);
objTabs.hdrWidth = 90;
objTabs.tabWidth = 686;
objTabs.tabHeight = 330;
objTabs.tabs = arrTabs;
</script>
</head>
<body>
<form id="frmWorkgroup">
<div id="tab_member_data" class="clsTab"></div>
<div id="tab_locale" class="clsTab"></div>
<div id="tab_privilege" class="clsTab"></div>
<div id="tab_notification" class="clsTab"></div>
<div id="tab_calendar" class="clsTab"></div>
<div id="tab_queues" class="clsTab"></div>
<div id="tab_members" class="clsTab"></div>
<div style="position:absolute;top:390;left:10;">
<div style="float:right;">
<input type="button" value="Add.." id="addButton" class="btn" />
<input type="button" value="Replace" onclick="Replace()" class="btn" />
<input type="button" value="Delete" onclick="Delete()" class="btn" />
<input type="button" value="Clear" onclick="Clear();" class="btn" />
</div>
</div>
</form>
<script language="javascript">
objTabs.build(0);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment