首页 > 代码库 > jQWidgets笔记

jQWidgets笔记

http://www.jqwidgets.com/jquery-widgets-demo/

常用:

//设置列间距可调
$(‘#jqxGrid‘).jqxGrid({ columnsresize: false});
//获取是否可调值

var columnsresize = $(‘#jqxGrid‘).jqxGrid(‘columnsresize‘);

//数据绑定完成后事件
$("#jqxGrid").on("bindingcomplete", function (event) {// your code here.});


jqxGrid Demo:

http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm#demos/jqxgrid/defaultfunctionality.htm

<!DOCTYPE html>
<html lang="en">
<head>
    <title id='Description'>This demo illustrates the basic functionality of the Grid plugin. The jQWidgets Grid plugin offers rich support for interacting with data, including paging, grouping and sorting. 
    </title>
    <link rel="stylesheet" href=http://www.mamicode.com/jqwidgets/styles/jqx.base.css" type="text/css" />>

jQWidgets笔记