Optionale Suchparameter eingebunden

This commit is contained in:
ja
2021-09-14 16:18:11 +02:00
parent 6e09744a8c
commit 1fc5c1b695
3 changed files with 78 additions and 51 deletions

View File

@@ -60,7 +60,7 @@
If True Then 'AVISO.Status <> 1 And AVISO.Status <> 2 Then 'SENDUNGSTABELLE'%>
<div class="flex-fill" style="margin-left:4px">
<div style="border:/*1px*/0.04071661237785016vw #043381 solid">
<div>
<div class="col-12" style="margin-left:2px">
<h2><%=STANDORT %></h2>
@@ -82,17 +82,17 @@
<asp:RadioButton ID="rbt_Vorb" runat="server" Text="Vorbereitet"/>
<asp:RadioButton ID="rbt_Vorg" runat="server" Text="Vorgeschrieben"/>
<asp:RadioButton ID="rbt_Ankunft" runat="server" Text="Ankunft"/>
<asp:RadioButton ID="rbt_Freig" runat="server" Text="Freigabe" onclick="rbt_Freig_Click" data-bs-toggle="tooltip" data-bs-placement="top" title="Wenn dieser Filter angewählt ist, bitte das Datum eingrenzen."/>
<asp:RadioButton ID="rbt_Freig" runat="server" onclick="optionensichtbarkeit()" Text="Freigabe" data-bs-toggle="tooltip" data-bs-placement="top" title="Wenn dieser Filter angewählt ist, bitte das Datum eingrenzen."/>
</div>
</div>
</div>
<div style="height:0.936768149882904vh"></div>
<div class="col-12" id="cont4">
<div class="col-12" style="border:/*1px*/0.04071661237785016vw #043381 solid; margin:-4px 2px -4px 2px">
<div class="col-12">
<div class="row-cols-12" style="margin-left:4px">
<asp:Label ID="lbl_Suchparam_Wichtig" runat="server" Text="Wichtge Suchparamter:"></asp:Label>
</div>
<div class="container" style="margin-left:2px">
<div class="container2" style="margin-left:2px">
<div class="align-content-start">
<asp:Label ID="lbl_von" runat="server" Text="Von:"></asp:Label>
<asp:TextBox id="pickdate1" Type="Date" runat="server"></asp:TextBox>
@@ -102,48 +102,41 @@
</div>
</div>
</div>
<div style="height:/*12px*/0.936768149882904vh"></div>
<div style="height:/*12px*/0.936768149882904vh"></div>
<button class="btn btn-primary" id="btn_collapseoptionalparams" type="button" data-bs-toggle="collapse" data-bs-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample" style="width:100%; background-color:#fff;color">Für die erweiteren Optionen klicken!</button>
<div class="collapse" id="collapseExample">
<div class="card card-body">
<div class="col-12" id="cont3" style="border:/*1px*/0.04071661237785016vw #043381 solid; margin: 2px 2px 2px 2px">
<div class="container" style="margin-left:2px">
<asp:Label ID="lbl_option_Suchparam" runat="server" Text="Optionale Suchparameter:" data-bs-toggle="tooltip" data-bs-placement="top" title="Wenn nichts angewählt ist, bitte das Datum eingrenzen."></asp:Label>
<div style="height:/*12px*/0.936768149882904vh"></div>
<!-- Optionale Suchparameter-->
<div class="row">
<div class="col-4">
<asp:Label ID="lbl_Absender" runat="server" Text="Absender"></asp:Label>
</div>
<div class="col-8" style="margin-right:/*1.52px;*/0.33480176211453744vw;">
<asp:TextBox ID="txt_Absender" runat="server" style="width:117px"></asp:TextBox>
</div>
</div>
<div style="height:/*12px*/0.936768149882904vh"></div>
<div class="row">
<div class="col-4">
<asp:Label ID="lbl_Absender" runat="server" Text="Absender"></asp:Label>
<asp:TextBox ID="txt_Absender" runat="server" style="width:117px"></asp:TextBox>
<asp:Label ID="lbl_Empfaenger" runat="server" Text="Empfänger"></asp:Label>
</div>
<div class="col-8" style="margin-right:/*1.52px;*/0.33480176211453744vw;">
<asp:TextBox ID="txt_Empfaenger" runat="server" style="width:117px"></asp:TextBox>
</div>
</div>
<div style="height:/*12px*/0.936768149882904vh"></div>
<div class="row">
<div class="col-4">
<asp:Label ID="lbl_LKWNr" runat="server" Text="LKW Nr"></asp:Label>
</div>
<div class="col-8" style="margin-right:/*1.52px;*/0.33480176211453744vw;">
<asp:TextBox ID="txt_LKWNr" runat="server" style="width:117px"></asp:TextBox>
</div>
</div>
<div style="height:/*12px*/0.936768149882904vh"></div>
<div class="row">
<div class="col-4">
<asp:Label ID="lbl_KdNrAuftrag" runat="server" Text="Kunden Auftrags Nr"></asp:Label>
</div>
<div class="col-8" style="margin-right:/*1.52px;*/0.33480176211453744vw;">
<asp:TextBox ID="txt_KdNrAuftrag" runat="server" style="width:117px"></asp:TextBox>
</div>
</div>
</div>
</div>
</div></div>
<div style="height:/*24px*/1.873536299765808vh"></div>
<asp:Button ID="btn_Auftraege" runat="server" Text="Erhalte Aufträge" OnClick="btn_Auftraege_Click" style="margin-left:18px" />
<div style="height:/*32px*/2.498048399687744vh"></div>
@@ -197,5 +190,16 @@
</table>
</div>
</div>--%>
<script type="text/javascript">
function optionensichtbarkeit() {
if (rbt_Freig.checked) {
document.getElementById("container2").style.display = "inline";
} else {
document.getElementById("container2").style.display= "hidden";
}
}
</script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
</asp:Content>