Datagrid:
树:
combotree实现一个可以多选的树保存问题:
datagrid中扩展默认的rownumbers宽度:
onLoadSuccess:function(data){
			$(".datagrid-btable").find("tr").each(function(i){
				var $td = $(this).find("td:eq(0)").find("div");
				$td.css("width","50px");
			})
			$(".datagrid-header-rownumber").width("50px");  
		}注意不光需要改变下面的数据列宽度,还需要改变上面Header列宽度,否则不起作用。
验证:
http://www.easyui.info/archives/category/easyui/form/validatebox-form
