首页 > 代码库 > 针对 jQuery Gridly 控件显示多少列的问题。
针对 jQuery Gridly 控件显示多少列的问题。
针对 jQuery Gridly 控件显示多少列的问题,完全根据 columns 的值来显示。
但是显示columns,并不是给多少值显示几列。到目前还是很模糊的。官方文档没有给出具体的一个解释。
$(‘.gridly‘).gridly({base: 60, // pxgutter: 20, // pxcolumns: $("#FormColumnCount").val() * 3,callbacks: {reordered: function ($elements) {// Called after the drag and drop ends with the elements in their ending position.// 当前对象var currentObj = this.reordered.arguments[1];var arr = $elements;// 前一个对象var prevObj;// 后一个对象var afterObj;for (i = 0; i < arr.length; i++) {$(arr[i]).find(‘input[name=SortBy]‘).val((i + 2) * 10);}//执行保存排序,更新数据//sortData...}}});
决定坐标的代码如下:
Gridly.prototype.position = function($element, columns) { var column, height, i, j, k, max, ref, ref1, ref2, size; size = this.size($element); height = Infinity; column = 0; for (i = j = 0, ref = columns.length - size; 0 <= ref ? j < ref : j > ref; i = 0 <= ref ? ++j : --j) { max = Math.max.apply(Math, columns.slice(i, i + size)); if (max < height) { height = max; column = i; } } for (i = k = ref1 = column, ref2 = column + size; ref1 <= ref2 ? k < ref2 : k > ref2; i = ref1 <= ref2 ? ++k : --k) { columns[i] = height + ($element.data(‘height‘) || $element.outerHeight()) + this.settings.gutter; } return { x: column * (this.settings.base + this.settings.gutter), y: height }; };
针对 jQuery Gridly 控件显示多少列的问题。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。