您现在的位置是:网站首页>技术文章技术文章

footable设置排序时,数字列排序不正确,不按小到大排序的解决方法

左鹏05-11 10:32:29技术文章4,066人已围观

简介在使用footable插件时,出现数字列排序不按小到大,或大到小排序方式的解决方法如下 问题: //非数字排序如下 1 11 2 23 33 43 44 4 55 应该以以下方式排序: 1 2 4 11 23 33 43 44 55 解决方法,只需要设置该列为数字列就可以了: //设置数字列类型:data-type="numeric" <table class="footable" data-page-size="1000"> <thead>

在使用footable插件时,出现数字列排序不按小到大,或大到小排序方式的解决方法如下

问题:

//非数字排序如下
1 11 2 23 33 43  44 4 55

应该以以下方式排序:

1 2 4 11 23 33 43 44 55

解决方法,只需要设置该列为数字列就可以了:

//设置数字列类型:data-type="numeric"

<table class="footable" data-page-size="1000">
	<thead>
		<tr>
			<th data-type="numeric">数字列</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>11</td>
		</tr>
		<tr>
			<td>2</td>
		</tr>
		<tr>
			<td>3</td>
		</tr>
		<tr>
			<td>44</td>
		</tr>
		<tr>
			<td>22</td>
		</tr>
		<tr>
			<td>33</td>
		</tr>
	</tbody>
</table>

 

文章评论

    请先说点什么
    热门评论
    0人参与,0条评论
    正在载入评论列表...

    站点信息

    • 建站时间:2018-09-18
    • 网站程序:Spring Boot
    • 主题模板:《今夕何夕》
    • 文章统计:104条
    • 微信公众号:扫描二维码,关注我们
    登陆您的账户