Grid的相關模組,隨手記錄一下。


 

 

相關手冊及範例:http://www.activewidgets.com/general.intro/

有相關的程式碼範例及線上範本(點選Show me按鈕)


 

官方網站:http://www.activewidgets.com/grid/

 

Javascript Component Library - ActiveWidgets 2.6.

ActiveWidgets is a powerful javascript component library which makes web application development (especially AJAX-style apps) a lot easier and more productive. ActiveWidgets provides you with a set of common visual elements (like datagrid, tabs, tree, combo) sharing professional look-and-feel and simple programming model.

 



Our editable datagrid control can display fixed headers and footers, multiple fixed left and right columns, load data from XML, CSV or javascript code, have various selection and navigation models, be styled with standard CSS - basically, having more features than many of the .NET or Java grids and still be very fast handling hundreds of thousands of records (virtual rendering!) - and all of this just in standard HTML.

Download Free Trial - ActiveWidgets 2.6.1

 


Grid中如何隱藏某些欄位:

網址:http://www.activewidgets.com/grid.howto.columns/hide.html

Hide

The simplest way to hide columns is setting column count property to the smaller number than actual number of fields in the dataset

var myCells = [
    ["Some text", "123", "456.00"]
];
...
obj.setColumnCount(2);

In addition it is possible to specify exactly which columns should be rendered by providing an array of column indices.

obj.setColumnIndices([1,2,3]); // column 0 is hidden
obj.setColumnCount(3);
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Nathan 的頭像
    Nathan

    Nathan;

    Nathan 發表在 痞客邦 留言(0) 人氣()