T139 split datetime-local to date and time fields

This commit is contained in:
2021-03-18 16:27:04 +01:00
parent 8d3fc63777
commit 4d8e34ba27
4 changed files with 10 additions and 6 deletions

View File

@@ -293,7 +293,7 @@ input:focus {
}
#historyFunction div input {
width: 75%;
width: 65%;
}
#historyFunction button {

View File

@@ -94,11 +94,13 @@
<div id="historyFunction">
<div>
<label for="historyFrom">From</label>
<input type="datetime-local" name="dateFrom" id="historyFrom"/>
<input type="date" name="dateFrom" id="historyFrom"/>
<input type="time" name="timeFrom" id="historyTimeFrom"/>
</div>
<div>
<label for="historyTo">To</label>
<input type="datetime-local" name="dateTo" id="historyTo"/>
<input type="date" name="dateTo" id="historyTo"/>
<input type="time" name="dateTo" id="historyTimeTo"/>
</div>
<button id="btn-searchHistory">Search</button>
</div>

View File

@@ -293,7 +293,7 @@ input:focus {
}
#historyFunction div input {
width: 75%;
width: 65%;
}
#historyFunction button {

View File

@@ -94,11 +94,13 @@
<div id="historyFunction">
<div>
<label for="historyFrom">From</label>
<input type="datetime-local" name="dateFrom" id="historyFrom"/>
<input type="date" name="dateFrom" id="historyFrom"/>
<input type="time" name="timeFrom" id="historyTimeFrom"/>
</div>
<div>
<label for="historyTo">To</label>
<input type="datetime-local" name="dateTo" id="historyTo"/>
<input type="date" name="dateTo" id="historyTo"/>
<input type="time" name="dateTo" id="historyTimeTo"/>
</div>
<button id="btn-searchHistory">Search</button>
</div>