-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jim O-Table2-Details.html
89 lines (80 loc) · 4.74 KB
/
Jim O-Table2-Details.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Table 2 Hand Summary</title>
<!-- external files -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/styles/css/slick.grid.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/styles/css/slick-default-theme.css">
<link rel="stylesheet" type="text/css" href="https://code.jquery.com/ui/1.9.1/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="gridstyles.css" type="text/css" />
<link href="rebuystyles.css" rel="stylesheet" type="text/css">
<script src=https://cdn.jsdelivr.net/npm/flatpickr></script>
<script src=https://cdn.jsdelivr.net/npm/sortablejs/Sortable.min.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/slick.core.min.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/slick.interactions.min.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/slick.formatters.min.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/slick.editors.min.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/plugins/slick.rowselectionmodel.min.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/slick.grid.min.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/slick.dataview.min.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/controls/slick.pager.min.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/controls/slick.columnpicker.min.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/plugins/slick.resizer.min.js></script>
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- internal filels -->
</head>
<body>
<div style="position:relative">
<div style="width:1792px;">
<div class="grid-header" style="width:100%">
<label id="title"></label>
</div>
<div class="filter-section-sm">
<div style="float:left">
<label>Filters: Won/Lost: </label>
<input size="10" type=text id="amountWonSearch">
<label>Won/Lost LEQ: </label>
<input type="number" min="0" max="999" type=text id="amountLossSearch">
<label>Position Name: </label>
<input size="8" type=text id="positionSearch">
<label>Street: </label>
<input size="8" type=text id="stepSearch">
<label>Action Amount: </label>
<input size="10" type=text id="actionAmountSearch">
<label>Amount/Pot: </label>
<input size="10" type=text id="amountToPotSearch">
<label>Action: </label>
<input size="15" type=text id="actionSearch">
<label>Last Action (LA): </label>
<input size="15" type=text id="lastActionSearch">
<label>LA Player: </label>
<input size="15" type=text id="lastActionPlayerSearch">
<label>Hole Card Tier: </label>
<input size="5" type=text id="holeCardsTierSearch">
<label>Total Players: </label>
<input size="5" type=text id="totalPlayersSearch">
</div>
<div style="padding-top: 30px; padding-bottom: 8px;">
<label>Search Summary - </label>
<label id = "searchResults"></label>
<button id="collapse" style="float: right; margin-right: 10px;">Collapse</button>
<button id="expand" style="float: right; margin-right: 5px;">Expand</button>
<button id="search" style="float: right; margin-right: 5px;">Search</button>
<button id="clearFilters" style="float: right; margin-right: 5px;">Clear</button>
</div>
</div>
<div class="container" style="width:100%">
<div id="myGrid"></div>
</div>
</div>
</div>
<script type="text/javascript" src="playerdetails.js"></script>
<script type="text/javascript" src="Jim O-Table2-Details.js"></script>
<script>
document.getElementById('title').innerHTML = title;
document.title = title;
</script>
</body>
</html>