diff options
author | Seshu-Kumar-M <seshu.kumar.m@huawei.com> | 2016-10-31 12:00:37 +0800 |
---|---|---|
committer | Seshu-Kumar-M <seshu.kumar.m@huawei.com> | 2016-10-31 12:00:37 +0800 |
commit | 00d3f6bec8a1502e5aa757de9e449e0fd67cac7a (patch) | |
tree | c8c5a430e727e59b2021f080b82c7ad310aa423e | |
parent | efc2a423403e3080d69b31158a98395be675e890 (diff) |
Issue with the time is in milli secs
Change the time to standard GMT timezone
GSO-76
Change-Id: I1a4b1cc388e39ec7a671f9ddc4b8fdcc317a58e4
Signed-off-by: Seshu-Kumar-M <seshu.kumar.m@huawei.com>
-rw-r--r-- | openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html index c90cde04..8b5677ea 100644 --- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html +++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html @@ -15,6 +15,7 @@ limitations under the License.
-->
+
<!DOCTYPE html>
<html lang="en">
<head>
@@ -33,14 +34,15 @@ <script type="text/javascript" src="js/bootstrap-table-filter-control.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
- /* $('.modal-content').resizable({
-
- minHeight: 300,
- minWidth: 300
- });*/
+
$('.modal-dialog').draggable();
$("#detailCont").show();
var jsondata = loadGetServiceData();
+
+ $.each(jsondata,function(k,v){
+ jsondata[k].createTime= new Date(jsondata[key].createTime).toUTCString();
+ });
+
$('#sai').bootstrapTable({
//Assigning data to table
data: jsondata
|