Änderungen LKW GUi und dateien um wieder lauffähig zu sein und Compilerrelease versionswechsel von 2.0 auf 3.5
This commit is contained in:
@@ -59,7 +59,7 @@
|
||||
<div class="row">
|
||||
<div class="col-10"></div>
|
||||
<div class="col-2">
|
||||
<asp:Button runat="server" Text="Alle" ClientIDMode="Predictable" ID="btn_alle" style="margin-left:-36px;width:56px"/></div>
|
||||
<asp:Button runat="server" Text="Alle" ClientIDMode="Predictable" ID="btn_alle" OnClick="btn_alle_Click" style="margin-left:-36px;width:56px"/></div>
|
||||
</div>
|
||||
<div style="height:5px"></div>
|
||||
<div class="row">
|
||||
@@ -67,8 +67,9 @@
|
||||
<div class="col-9">
|
||||
<div class="col-9"style="height:10px;"></div>
|
||||
<div class="flex-col-9">
|
||||
<asp:Table ID="Table1" runat="server"></asp:Table>
|
||||
<asp:Table ID="tbl_sidemenue" runat="server" CssClass="table table-striped" style="width:310px;margin-left:-32px;">
|
||||
<asp:TableHeaderRow style="background-color:#043381;color:#fff;font-size:0.86em"><asp:TableHeaderCell>KFZ-Kennzeichen</asp:TableHeaderCell><asp:TableHeaderCell>Nat.</asp:TableHeaderCell><asp:TableHeaderCell>Verk</asp:TableHeaderCell><asp:TableHeaderCell>KZ-An</asp:TableHeaderCell><asp:TableHeaderCell>Vermerk</asp:TableHeaderCell></asp:TableHeaderRow>
|
||||
<asp:TableHeaderRow style="background-color:#043381;color:#fff;font-size:0.86em"><asp:TableHeaderCell ID="tbhc_KFZKennz">KFZ-Kennzeichen</asp:TableHeaderCell><asp:TableHeaderCell ID="tbhc_Nat">Nat.</asp:TableHeaderCell><asp:TableHeaderCell ID="tblhc_Verk">Verk</asp:TableHeaderCell><asp:TableHeaderCell ID="tblhc_Kz">KZ-An</asp:TableHeaderCell><asp:TableHeaderCell ID="tblhc_Verm">Vermerk</asp:TableHeaderCell></asp:TableHeaderRow>
|
||||
</asp:Table>
|
||||
|
||||
</div>
|
||||
@@ -119,51 +120,6 @@
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
|
||||
|
||||
|
||||
<script>
|
||||
function filterRENr() {
|
||||
// Declare variables
|
||||
var input, filter, table, tr, td, i, txtValue;
|
||||
input = document.getElementById("myInput3");
|
||||
filter = input.value.toUpperCase();
|
||||
table = document.getElementById("bodyoftable");
|
||||
tr = table.getElementsByTagName("tr");
|
||||
|
||||
// Loop through all table rows, and hide those who don't match the search query
|
||||
for (i = 0; i < tr.length; i++) {
|
||||
td = tr[i].getElementsByTagName("td")[0];
|
||||
if (td) {
|
||||
txtValue = td.textContent || td.innerText;
|
||||
if (txtValue.toUpperCase().indexOf(filter) > -1) {
|
||||
tr[i].style.display = "";
|
||||
} else {
|
||||
tr[i].style.display = "none";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
function filterdatvonbis() {
|
||||
// Declare variables
|
||||
var input, filter, table, tr, td, i, txtValue;
|
||||
input = document.getElementById("myInput1");
|
||||
input2 = document.getElementById("myInput2");
|
||||
filter = input.value.toUpperCase();
|
||||
filter = input2.value.toUpperCase();
|
||||
table = document.getElementById("bodyoftable");
|
||||
tr = table.getElementsByTagName("tr");
|
||||
|
||||
// Loop through all table rows, and hide those who don't match the search query
|
||||
for (i = 0; i < tr.length; i++) {
|
||||
td = tr[i].getElementsByTagName("td")[1];
|
||||
if (td) {
|
||||
txtValue = td.textContent || td.innerText;
|
||||
if (txtValue.toUpperCase().indexOf(filter) > -1) {
|
||||
tr[i].style.display = "";
|
||||
} else {
|
||||
tr[i].style.display = "none";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
</asp:Content>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user