127 lines
3.9 KiB
Plaintext
127 lines
3.9 KiB
Plaintext
<%@ Page Title="Patients" Language="C#" MasterPageFile="main.master" CodeBehind="patient.aspx.cs" Inherits="FWA_MAIN.patient" %>
|
|
|
|
<asp:Content runat="server" ContentPlaceHolderID="cph1">
|
|
|
|
<link type="text/css" href="main.css"/>
|
|
//Test
|
|
<h1 style="text-align: center; font-size: 44px">
|
|
Patients
|
|
</h1>
|
|
<div class="patDiv" style="padding-left: 400px">
|
|
<div class="patDiv" style="width: 100px; margin-right: 5px">
|
|
<div class="indivPatDiv" style="text-align: right;">
|
|
<label for="txtFNAME" class="buttonLabel">First Name: </label>
|
|
</div>
|
|
<br/>
|
|
<div class="indivPatDiv" style="text-align: right;">
|
|
<label for="txtLNAME" class="buttonLabel">Last Name: </label>
|
|
</div>
|
|
<br/>
|
|
<div class="indivPatDiv" style="text-align: right;">
|
|
<label for="txtPatID" class="buttonLabel">Patient ID: </label>
|
|
</div>
|
|
<br/>
|
|
</div>
|
|
|
|
<div class="patDiv" style="width: 400px">
|
|
<div class="indivPatDiv">
|
|
<asp:TextBox runat="server" CssClass="defaultTXT" id="txtFNAME"></asp:TextBox>
|
|
</div>
|
|
<br/>
|
|
<div class="indivPatDiv">
|
|
<asp:TextBox runat="server" CssClass="defaultTXT" id="txtLNAME"></asp:TextBox>
|
|
</div>
|
|
<br/>
|
|
<div class="indivPatDiv">
|
|
<asp:TextBox runat="server" CssClass="defaultTXT" id="txtPatID"></asp:TextBox>
|
|
</div>
|
|
<br/>
|
|
</div>
|
|
<br/>
|
|
<asp:Button runat="server" ID="btnPatSearch" Text="Search" CssClass="btnPatSearch"/>
|
|
|
|
</div>
|
|
|
|
<asp:GridView runat="server" ID="gvPatient" BorderColor="red"></asp:GridView>
|
|
|
|
<script type="text/javascript">
|
|
document.oncontextmenu = rightClick;
|
|
|
|
function rightClick(clickEvent) {
|
|
clickEvent.preventDefault();
|
|
// return false;
|
|
}
|
|
</script>
|
|
|
|
<div id="contextMenu" class="context-menu"
|
|
style="display: none">
|
|
<ul>
|
|
<li>
|
|
<a href="patNew.aspx">New</a>
|
|
</li>
|
|
<li>
|
|
<a href="patEdit.aspx">Edit</a>
|
|
</li>
|
|
<li>
|
|
<a href="#">Delete</a>
|
|
</li>
|
|
|
|
<%-- <asp:Button runat="server" Text="New" OnClick="btnNew_OnClick" /> --%>
|
|
</ul>
|
|
</div>
|
|
<script>
|
|
document.onclick = hideMenu;
|
|
document.oncontextmenu = rightClick;
|
|
|
|
function hideMenu() {
|
|
document.getElementById("contextMenu")
|
|
.style.display = "none"
|
|
}
|
|
|
|
|
|
function rightClick(e) {
|
|
e.preventDefault();
|
|
|
|
if (document.getElementById("contextMenu").style.display == "block")
|
|
hideMenu();
|
|
else{
|
|
var menu = document.getElementById("contextMenu")
|
|
|
|
menu.style.display = 'block';
|
|
menu.style.left = e.pageX + "px";
|
|
menu.style.top = e.pageY + "px";
|
|
}
|
|
}
|
|
</script>
|
|
<style type="text/css">
|
|
.context-menu {
|
|
position: absolute;
|
|
text-align: center;
|
|
background: lightgray;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.context-menu ul {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
min-width: 150px;
|
|
list-style: none;
|
|
}
|
|
|
|
.context-menu ul li {
|
|
padding-bottom: 7px;
|
|
padding-top: 7px;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.context-menu ul li a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
.context-menu ul li:hover {
|
|
background: darkgray;
|
|
}
|
|
</style>
|
|
|
|
</asp:Content> |