bootstrap
luo_yu_1106
这个作者很懒,什么都没留下…
展开
-
bootstrapTable中使用switch button
找了好久到底为何不生效,教程也看了很多,终于让我找到了先需要引入对应的js,css截图来自此博文 :https://blog.csdn.net/u014645632/article/details/53202839途中画蓝框的就是需要引入的,我的项目用的freemarker,我试过,必须在header.ftl和footer.flt中引入才有效。下载地址的话:我后期找一下更新...原创 2018-08-10 14:37:58 · 5159 阅读 · 21 评论 -
bootstrapValidator与wdate校验的问题
startTime : { trigger: 'focus', validators : { notEmpty : { ...原创 2019-04-03 15:14:59 · 168 阅读 · 0 评论 -
bootstrap表单搜索常用的方法
$('#queryButtonId').on('click', function (e) { tableOption.queryParams = (function(params){ var paramsNew=$("#searchForm").serialize().concat("&offset="+params.offset).concat("...原创 2019-04-15 18:01:58 · 1507 阅读 · 0 评论 -
清空搜索条件的写法
$("#btn_clearId").click(function () { $(':input', '#formId') .not(':button, :submit, :reset, :hidden') .val('') .removeAttr('ch...原创 2019-04-15 17:11:12 · 2370 阅读 · 2 评论 -
bootstrapTable常用时间格式
function dateFormatter(value) { if(value=='' ||value==undefined){ return value; } var myDate = new Date(value); //获取当前年 var year=myDate.getFullYe...原创 2019-03-27 15:55:39 · 4284 阅读 · 0 评论 -
bootstraptable设置行宽不生效,内容也不自动换行
解决办法:添加如下css<style type="text/css"> .table {table-layout:fixed;}</style>然后在给table设置style解决不自动换行的问题 <table id="table" style="word-break:break-all; word-wrap:break-all;"&g...原创 2019-03-27 15:28:19 · 1506 阅读 · 0 评论 -
BootstrapValidator与My97DatePicker日期选择后不触发正确校验
原文链接:https://blog.csdn.net/china_hdy/article/details/77836078解决方法是加上trigger: 'focus',// onfocus时验证fields: {sportDate: {validators: {notEmpty: {message: '日期不能为空'}},trigg...转载 2019-03-19 10:16:29 · 560 阅读 · 0 评论 -
bootstraptable设置某一列的宽度
width:'8%',在column属性上添加width:'x%'{field: '', title: '管理操作', align: 'center',width:'8%', valign: 'middle', formatter: function (value, row, index) { value = '<a class="btn btn-info...原创 2019-03-22 09:48:48 · 8443 阅读 · 2 评论 -
Bootstrap—输入框组input-group
https://blog.csdn.net/nongweiyilady/article/details/53648768转载 2019-03-21 14:19:00 · 2135 阅读 · 0 评论 -
bootstrap添加checkbox和跳转至第多少页
1.添加checkbox只需要在column里设置checkbox:true即可,可以设置checkbox是否可以选中,见下文列选项配置: {field: "check", title: "",align: "center", checkbox: true,formatter:stateFormatter}, function stateFormatter(value, row, index...原创 2018-12-29 15:52:48 · 978 阅读 · 0 评论 -
boostraptable显示date类型数据
可以通过一个注解来解决 在实体类的Date日期字段上加上这个@JsonFormat(pattern = "yyyy-MM-dd")private Date date;真是个方便的注解啊,是jsckson的包import com.fasterxml.jackson.annotation.JsonFormat;...原创 2019-05-22 11:26:32 · 1361 阅读 · 3 评论