diff options
author | jin xin <j00101220@huawei.com> | 2016-10-31 04:08:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@open-o.org> | 2016-10-31 04:08:02 +0000 |
commit | 5fa3c329b63e9a7c75699dc1b5a4beb0504852b2 (patch) | |
tree | 3dd276301f297ddc24543d6ef8d05fae4f93a531 | |
parent | e3c9b8f0bf634a6cd462fc759ebcdac4ac857f95 (diff) | |
parent | 00d3f6bec8a1502e5aa757de9e449e0fd67cac7a (diff) |
Merge "Issue with the time is in milli secs Change the time to standard GMT timezone GSO-76"
-rw-r--r-- | openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html | 11 |
1 files changed, 6 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 78fee8e6..8b5677ea 100644 --- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html +++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/gsolcmmain.html @@ -34,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
|