首页 > 其他 > 详细

easyui datagrid添加progressbar 进度条

时间:2017-04-05 10:08:48      阅读:323      评论:0      收藏:0      [点我收藏+]
{field:‘shtgl‘,title:‘审核通过率‘,width:90,formatter:progressFormatter}

function progressFormatter(value,row,index){
	htmlstr=‘<div class="easyui-progressbar progressbar easyui-fluid" style="width: 100%; height: 20px;">‘
		         +‘<div class="progressbar-value" style="width: 100%; height: 20px; line-height: 20px;"> ‘
		             +‘<div class="progressbar-text" style="width: ‘+value+‘; height: 20px; line-height: 20px;">‘+ value +‘</div>‘
		         +‘</div>‘
	       +‘</div>‘;
    return htmlstr;  
}

网上很多都是progressbar-text写在前面,progressbar-value写在后面,但是出不来效果。

在这里把他们互换一下就OK了 !真不知道网上的那些博主是怎么实现的???

技术分享

本文出自 “梦想oO天堂” 博客,请务必保留此出处http://lionkas.blog.51cto.com/6265107/1912965

easyui datagrid添加progressbar 进度条

原文:http://lionkas.blog.51cto.com/6265107/1912965

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!