mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
commit
4fdc358786
@ -1072,7 +1072,7 @@ public class DeviceManagementAdminServiceImpl implements DeviceManagementAdminSe
|
|||||||
|
|
||||||
private static void validateScheduleDate(String dateString){
|
private static void validateScheduleDate(String dateString){
|
||||||
try {
|
try {
|
||||||
if (dateString != null) {
|
if (dateString != null && !dateString.isEmpty()) {
|
||||||
SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);
|
SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);
|
||||||
sdf.setLenient(false);
|
sdf.setLenient(false);
|
||||||
sdf.parse(dateString);
|
sdf.parse(dateString);
|
||||||
|
|||||||
@ -205,7 +205,7 @@
|
|||||||
showDropdowns: true,
|
showDropdowns: true,
|
||||||
timePickerIncrement: 1,
|
timePickerIncrement: 1,
|
||||||
locale: {
|
locale: {
|
||||||
format: 'MM-DD-YYYY hh:mm a'
|
format: "YYYY-MM-DDTHH:mm:ssZZ"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -222,7 +222,7 @@
|
|||||||
showDropdowns: true,
|
showDropdowns: true,
|
||||||
timePickerIncrement: 1,
|
timePickerIncrement: 1,
|
||||||
locale: {
|
locale: {
|
||||||
format: 'MM-DD-YYYY hh:mm a'
|
format: "YYYY-MM-DDTHH:mm:ssZZ"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -870,8 +870,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="wr-input-control" id="control-wifi-password" style="display:none;">
|
<div class="wr-input-control" id="control-wifi-password" style="display:none;">
|
||||||
<label class="wr-input-label" for="wifi-password">
|
<label class="wr-input-label" for="wifi-password">
|
||||||
Password*
|
Password
|
||||||
<span class="helper" title="Password for the wireless network.">
|
<span class="helper required" title="Password for the wireless network.">
|
||||||
<span class="wr-help-tip glyphicon glyphicon-question-sign"></span>
|
<span class="wr-help-tip glyphicon glyphicon-question-sign"></span>
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
|
|||||||
@ -906,8 +906,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="wr-input-control" id="control-wifi-password" style="display:none;">
|
<div class="wr-input-control" id="control-wifi-password" style="display:none;">
|
||||||
<label class="wr-input-label" for="wifi-password">
|
<label class="wr-input-label" for="wifi-password">
|
||||||
Password*
|
Password
|
||||||
<span class="helper" title="Password for the wireless network.">
|
<span class="helper required" title="Password for the wireless network.">
|
||||||
<span class="wr-help-tip glyphicon glyphicon-question-sign"></span>
|
<span class="wr-help-tip glyphicon glyphicon-question-sign"></span>
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
|
|||||||
@ -866,8 +866,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="wr-input-control" id="control-wifi-password" style="display:none;">
|
<div class="wr-input-control" id="control-wifi-password" style="display:none;">
|
||||||
<label class="wr-input-label" for="wifi-password">
|
<label class="wr-input-label" for="wifi-password">
|
||||||
Password*
|
Password
|
||||||
<span class="helper" title="Password for the wireless network.">
|
<span class="helper required" title="Password for the wireless network.">
|
||||||
<span class="wr-help-tip glyphicon glyphicon-question-sign"></span>
|
<span class="wr-help-tip glyphicon glyphicon-question-sign"></span>
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
|
|||||||
@ -335,8 +335,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="wr-input-control">
|
<div class="wr-input-control">
|
||||||
<label class="wr-input-label" for="wifi-password">
|
<label class="wr-input-label" for="wifi-password">
|
||||||
Password*
|
Password
|
||||||
<span class="helper" title="Password for the wireless network.">
|
<span class="helper required" title="Password for the wireless network.">
|
||||||
<span class="wr-help-tip glyphicon glyphicon-question-sign"></span>
|
<span class="wr-help-tip glyphicon glyphicon-question-sign"></span>
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user