admin管理员组文章数量:1344300
I want to format 2016-09-14T13:46:39+0000 to DD/MM/YYYY. The data is ing from a JSON file/url into a bootstrap-table. Is there a way to format this using bootstrap-table or javascript?
See jsfiddle
Thanks,
<table data-toggle="table"
data-url=""
data-row-style="rowStyle">
<thead>
<tr>
<th data-field="createdAt">Created At</th>
</tr>
</thead>
I want to format 2016-09-14T13:46:39+0000 to DD/MM/YYYY. The data is ing from a JSON file/url into a bootstrap-table. Is there a way to format this using bootstrap-table or javascript?
See jsfiddle
Thanks,
<table data-toggle="table"
data-url="https://api.myjson./bins/44564"
data-row-style="rowStyle">
<thead>
<tr>
<th data-field="createdAt">Created At</th>
</tr>
</thead>
Share
Improve this question
asked Nov 14, 2016 at 14:36
NinjaShawarmaNinjaShawarma
691 gold badge1 silver badge10 bronze badges
9
- It might just make sense to search the web for "javascript date format" or something similar, no? – Dave Newton Commented Nov 14, 2016 at 14:38
- @DaveNewton I have tried, but it got me confused. :( – NinjaShawarma Commented Nov 14, 2016 at 14:39
- here is the google link google./… – Kevin Kloet Commented Nov 14, 2016 at 14:40
- But there are running examples on the web and on Stack Overflow. I'd remend at least trying something before asking someone to do it for you, but maybe that's just me. In general SO is for specific problems as opposed to asking people to do all the work. – Dave Newton Commented Nov 14, 2016 at 14:40
- 1 @Igor I've looked into the API but I couldn't find something useful. Thanks! I will dig deep. – NinjaShawarma Commented Nov 14, 2016 at 14:44
1 Answer
Reset to default 9Check this will resolve your issue.. Am using moment js to format data.. ..
function dateFormat(value, row, index) {
return moment(value).format('DD/MM/YYYY');
}
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://momentjs./downloads/moment.min.js"></script>
<script src="https://rawgit./wenzhixin/bootstrap-table/master/src/bootstrap-table.js"></script>
<link href="https://rawgit./wenzhixin/bootstrap-table/master/src/bootstrap-table.css" rel="stylesheet"/>
<table data-toggle="table"
data-url="https://api.myjson./bins/44564"
data-row-style="rowStyle">
<thead>
<tr>
<th data-field="createdAt" data-formatter="dateFormat">Created At</th>
</tr>
</thead>
</table>
本文标签: javascriptHow do you convert dates in JSONBootstrapTable to DDMMYYYYStack Overflow
版权声明:本文标题:javascript - How do you convert dates in JSONBootstrap-Table to DDMMYYYY - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743784447a2538426.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论