2024-04-03 19:23:50 -04:00
|
|
|
<%@ Page Title="Physicians" EnableEventValidation="false" Language="C#" MasterPageFile="main.master" CodeBehind="physician.aspx.cs" Inherits="FWA_MAIN.physician" %>
|
2024-03-21 18:29:31 -04:00
|
|
|
|
|
|
|
<asp:Content runat="server" ContentPlaceHolderID="cph1">
|
|
|
|
|
2024-04-03 19:32:20 -04:00
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function() {
|
|
|
|
$(document).keypress(function(e) {
|
|
|
|
if (e.which === 13) { // Enter key = keycode 13
|
|
|
|
e.preventDefault(); // Prevent the default Enter action
|
|
|
|
$("#<%= btnPhySearch.ClientID %>").click(); // Trigger the search button click
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2024-03-21 18:29:31 -04:00
|
|
|
<link type="text/css" href="main.css"/>
|
|
|
|
<h1 style="text-align: center; font-size: 44px">
|
|
|
|
Physicians
|
|
|
|
</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;">
|
2024-04-03 19:23:50 -04:00
|
|
|
<label for="txtPhysID" class="buttonLabel">Physician ID: </label>
|
2024-03-21 18:29:31 -04:00
|
|
|
</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">
|
2024-04-03 19:23:50 -04:00
|
|
|
<asp:TextBox runat="server" CssClass="defaultTXT" id="txtPhysID"></asp:TextBox>
|
2024-03-21 18:29:31 -04:00
|
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
</div>
|
|
|
|
<br/>
|
2024-04-03 19:23:50 -04:00
|
|
|
<asp:Button runat="server" ID="btnPhySearch" Text="Search" CssClass="btnPatSearch" OnClick="btnPhySearch_OnClick"/>
|
|
|
|
|
2024-03-21 18:29:31 -04:00
|
|
|
</div>
|
2024-04-03 19:23:50 -04:00
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
<br/>
|
2024-03-21 18:29:31 -04:00
|
|
|
|
2024-04-03 19:23:50 -04:00
|
|
|
<div style="width: 75%; margin: 0 auto; align-content: center; horiz-align: center">
|
|
|
|
<asp:GridView runat="server" ID="gvPhysician"
|
|
|
|
CssClass="gridview"
|
|
|
|
HeaderStyle-CssClass="headerstyle"
|
|
|
|
RowStyle-CssClass="rowstyle"
|
|
|
|
AlternatingRowStyle-CssClass="alternatingrowstyle"
|
|
|
|
SelectedRowStyle-CssClass="selectedrowstyle"
|
|
|
|
OnRowCommand="gvPhysician_OnRowCommand"
|
|
|
|
AutoGenerateColumns="False"
|
|
|
|
OnRowDataBound="gvPhysician_OnRowDataBound"
|
|
|
|
OnSelectedIndexChanged="GridView1_SelectedIndexChanged">
|
|
|
|
<Columns>
|
|
|
|
<asp:BoundField DataField="Physician_id" HeaderText="Physician ID" SortExpression="Physician_id"/>
|
|
|
|
<asp:BoundField DataField="FirstName" HeaderText="First Name" SortExpression="FirstName"/>
|
|
|
|
<asp:BoundField DataField="LastName" HeaderText="Last Name" SortExpression="LastName"/>
|
|
|
|
<asp:BoundField DataField="MiddleIntials" HeaderText="Middle Initial" SortExpression="MiddleIntials"/>
|
|
|
|
<asp:BoundField DataField="Zip" HeaderText="Zip Code" SortExpression="Zip"/>
|
|
|
|
<asp:BoundField DataField="City" HeaderText="City" SortExpression="City"/>
|
|
|
|
<asp:BoundField DataField="UsState" HeaderText="State" SortExpression="UsState"/>
|
|
|
|
<asp:BoundField DataField="DOB" HeaderText="Date of Birth" SortExpression="DOB" DataFormatString="{0:d}" HtmlEncode="False"/>
|
|
|
|
<asp:BoundField DataField="PhoneNumber" HeaderText="Phone Number" SortExpression="PhoneNumber"/>
|
|
|
|
<asp:BoundField DataField="Gender" HeaderText="Gender" SortExpression="Gender"/>
|
|
|
|
<asp:BoundField DataField="Specialty" HeaderText="Specialty" SortExpression="Specialty"/>
|
|
|
|
</Columns>
|
|
|
|
</asp:GridView></div>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
document.oncontextmenu = rightClick;
|
|
|
|
|
|
|
|
function rightClick(clickEvent) {
|
|
|
|
clickEvent.preventDefault();
|
|
|
|
// return false;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div id="contextMenu" class="context-menu"
|
|
|
|
style="display: none; width: auto">
|
|
|
|
<ul>
|
|
|
|
<li style="height: 25px">
|
|
|
|
<asp:Button runat="server" CssClass="standardbtn" ID="btnPhysNew" Text="New" OnClick="btnPhysNew_OnClick"/>
|
|
|
|
</li>
|
|
|
|
<li style="height: 25px">
|
|
|
|
<asp:Button runat="server" CssClass="standardbtn" ID="bntPhysEdit" Text="Edit" OnClick="bntPhysEdit_OnClick"/>
|
|
|
|
</li>
|
|
|
|
<li style="height: 25px">
|
|
|
|
<asp:Button runat="server" CssClass="standardbtn" ID="btnPhysDelete" Text="Delete" OnClick="btnPhysDelete_OnClick"/>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<%-- <asp:Button runat="server" Text="New" OnClick="btnNew_OnClick" /> --%>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2024-03-21 18:29:31 -04:00
|
|
|
|
|
|
|
<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>
|
2024-04-03 19:23:50 -04:00
|
|
|
<a href="physnew02.aspx">New</a>
|
2024-03-21 18:29:31 -04:00
|
|
|
</li>
|
|
|
|
<li>
|
2024-04-03 19:23:50 -04:00
|
|
|
<a href="physEdit.aspx">Edit</a>
|
2024-03-21 18:29:31 -04:00
|
|
|
</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>
|
2024-04-03 19:23:50 -04:00
|
|
|
<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>
|
2024-03-21 18:29:31 -04:00
|
|
|
|
|
|
|
</asp:Content>
|