Projects tagged ‘table’


[10 total ]
19

displaytag

 
Primary Language: Java

The display tag library is an open source suite of custom tags that provide high-level web presentation patterns which will work in an MVC model. The library provides a significant amount of functionality while still being easy to use.

Metrics updated 07 Oct 08

0

gphfa

 
Primary Language: C++ Licensed as: Mozilla Public License 1.1

The General Hash Function Algorithm library contains implementations for a series of commonly used additive and rotative string hashing algorithm in the Object Pascal, C and C++, Java, Python and Ruby programming languages For more information please visit: http://www.partow.net/programming/hashfunctions/index.html

Metrics updated 10 Oct 08

0

j-table

 
Primary Language: JavaScript Licensed as: Mozilla Public License 1.1

This project provides a javascript library for manipulating DOM tables. You can apply sort, filter and hide to the table or any of its columns. You can also get the unique values within a column. Column data types are calculated in an extensible ... [More] way. Cells can be set to editable, for use by a GUI. The library respects HTML semantics (such as THEAD and TFOOT) and creates just one global object - jTable. The project Wiki contains a basic introduction plus a detailed API for the three members of the jTable object - jTable.t, jTable.h, and jTable.c. [Less]

Metrics updated 10 Oct 08

0

image-slice-save

 
Licensed as: GNU General Public License 2.0

Uses GIMP to slice an image into HTML along the guides. Currently supports only tables. Developed primarily as a platform independent Perl-o-tine. Written in Scheme and tested on Windows XP.

0

coffemaker

 
Licensed as: GNU General Public License 3.0 or later

The CoffeMaker provide a high level API to create search forms and display the search db query results into a paged table. The CoffeMaker includes a SearchMaker and a TableMaker. The TableMaker includes all modern features like paging, and row actions.

0

table-factory

 
Licensed as: GNU General Public License 3.0 or later

table_factory tries to easy the repetitive nature of making table but allow for complex table and CSS styling.

0

php-xhtml-table

 
Primary Language: PHP Licensed as: GNU General Public License 3.0 or later

PHP XHTML tableThis class for PHP 5 easily creates XHTML valid tables with a simple and easy to remember syntax. Download and installDownload the file on the Downloads tab, unzip it and read the INSTALL file. Example$table = new table(); ... [More] $table->caption('People'); $table->part('head'); $table->headers('Name',array('Age'=>'title="in years"'),'Country'); $table->part('body'); $table->row(''); $table->cells('John',23,'USA'); $table->row(''); $table->cell('Jack'); $table->cell('42'); $table->cell('Mexico'); $table->row(''); $table->cell('Philip J. Fry'); $table->cell('23'); $table->cell('India'); echo($table);Output People Name Age Country John 23 USA Jack 42 Mexico Philip J. Fry 23 India Preview (not exactly the code above)My caption Name Age Country John 23 USA Jack 42 Mexico Philip J. Fry 23 India [Less]

Metrics updated 08 Oct 08

0

fuzzywidgets

 
Licensed as: Apache License 2.0

A usefull set of classes that extends gwt widgets.This set includes resizable wigets and model-view-controller based interfaces.See DEMO FuzzyWidgets

0

sortable

 
Licensed as: MIT License

This plugin is designed to make it easier to create a sortable HTML table in your rails applications. It is a simple wrapper around your model's find method as well as providing some helper methods for building the UI.

0

flexigrid

 
Licensed as: MIT License

Flexigridby Paulo P. Marinas Lightweight but rich data grid with resizable columns and a scrolling data to match the headers, plus an ability to connect to an xml based data source using Ajax to load the content. Similar in concept with the Ext ... [More] Grid only its pure jQuery love, which makes it light weight and follows the jQuery mantra of running with the least amount of configuration. Features Resizable columns Resizable height and width Sortable column headers Cool theme Can convert an ordinary table Ability to connect to an ajax data source (XML and JSONnew) Paging Show/hide columns Toolbar (new) Search (new) Accessible API Resizable Width JSON Support Toolbar Table Toggle Button Show/Hide Columns control have been move to the column headers (try it by mouseovering a header and clicking a black triangle on the right) Fixed paging problem on multiple instances Mootools and Prototype noConflict() compatibility problems fixed New onError event on ajax interaction, (it will pass what the server said in a variable called data), allowing you to handle server problems New $().flexAddData method, allows you to directly add new data to the grid using your own data source. New preProcess API, allows you to modify or process data sent by server before passing it to Flexigrid, allowing you to use your own JSON format for example. Single Rows Select just use { singleSelect: true } in the options Quick Search Many more I'm planning to add an Editable and Resortable rows feature, as well as other cool GUI features. One of my main goal for the plugin is ultimately to keep it lightweight, maybe under 20k when compressed. Because otherwise you should probably stick with Ext Grid or YUI data table. [Less]