Datepicker

This commit is contained in:
ja
2021-09-08 11:57:12 +02:00
parent e1a02c6dfc
commit 95436c931a
2 changed files with 6 additions and 3 deletions

View File

@@ -92,8 +92,11 @@
<%Else If RadioButtonFreig.Checked = True Then %>
<div class="input-group input-daterange">
<input type="text" class="form-control" value="2012-04-05">
<input type="hidden" id="my_hidden_input">
<div class="input-group-addon">to</div>
<input type="text" class="form-control" value="2012-04-19">
<div class="input-group input-daterange">
<input type="text" class="form-control" value="2012-04-05">
<input type="hidden" id="my_hidden_input2">
</div>
<%End If %>

View File

@@ -25,10 +25,10 @@ Partial Class Kundenbereich_Default
If RadioButtonErf.Checked = True Then
dt = VERAG_PROG_ALLGEMEIN.cAviso.GET_KDLIST_WEB("", Integer.Parse(TB_KdNr.Text), {0}, DateTime.Now, DateTime.Now)
dt = VERAG_PROG_ALLGEMEIN.cAviso.GET_KDLIST_WEB("", Integer.Parse(TB_KdNr.Text), {0}, DateTime.Now.ToString, DateTime.Today.AddDays(10).ToString)
ElseIf RadioButtonFreig.Checked = True Then
dt = VERAG_PROG_ALLGEMEIN.cAviso.GET_KDLIST_WEB("", Integer.Parse(TB_KdNr.Text), {1}, DateTime.Now, DateTime.Now)
dt = VERAG_PROG_ALLGEMEIN.cAviso.GET_KDLIST_WEB("", Integer.Parse(TB_KdNr.Text), {1}, DateTime.Now.ToString, DateTime.Today.AddDays(10).ToString)
ElseIf RadioButtonAnkunft.Checked = True Then
dt = VERAG_PROG_ALLGEMEIN.cAviso.GET_KDLIST_WEB("", Integer.Parse(TB_KdNr.Text), {3})