Bootstrap
文章平均质量分 56
sxlzs_
IT 大白
展开
-
对bootstrapValidator进行扩展、自定义校验
我们在用bootstrapValidator校验form表单的时候,它定义的notEmpty,regexp,stringLength等有时候并不能满足我们需要,这时可以自己进行扩展,自定义校验1. 添加一个bootstrapValidator.min.extend.js 2.写自定义校验代码// 对bootstrapValidator进行扩展(function($) { //这里的no...原创 2017-08-30 16:38:25 · 8523 阅读 · 1 评论 -
bootstrapValidator 根据条件在js中添加或移除校验
这是开始的校验代码function initValidate() { $('#detailform').bootstrapValidator({ feedbackIcons : { valid : 'glyphicon glyphicon-ok', invalid : 'glyphicon glyphicon-remove', validating ...原创 2017-10-12 10:34:37 · 7805 阅读 · 2 评论 -
bootstrapTable 根据条件隐藏某列
我们在用bootstrapTable的时候,有时需要根据条件,比如权限隐藏某一列{ field : 'id', title : '操作', width : 80, align : 'center', formatter : function(value, row, index) { var operation = ""; // 审批 if (!$.string.isNullO...原创 2017-09-11 16:21:38 · 11229 阅读 · 0 评论