Projects tagged ‘table’


[131 total ]

0 Users

simple html+css based bars
Created 12 months ago.

0 Users

Introduction to WP-Table ReloadedThis plugin for WordPress allows you to create and manage tables in the admin-area of WordPress. You can then show them in your posts, on your pages or in text widgets ... [More] by using a shortcode, or anywhere else with a template tag function. More Information in EnglishPlease see the English plugin website http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ . If you like this plugin, please rate it in the WordPress Plugin Directory. Thank you! Mehr Informationen auf DeutschDieses Plugin erlaubt die Verwaltung von Tabellen in WordPress. Weitere Informationen auf Deutsch: http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-deutsch/ Wenn die das Plugin gefällt, bewerte es bitte im WordPress Plugin Directory. Danke! Issue Tracking, Bug reports, Feature requestsIf you find a bug or issue in the plugin, please add an issue here. Do not use the Issue Tracker to get help or support! Please ask those questions in the WordPress Support Forums by opening new thread (with the tag wp-table-reloaded) and e-mail me the link to the thread or post it as a comment on the plugin website (see links above). Thank You! [Less]
Created 6 months ago.

0 Users

The Database Facade library offers a way to access miltiple vendor databases with code that does not need to change from vendor to vendor. The library offers a set of java classes and methods that ... [More] allow the user to define create, select, update, insert and delete statements that will function on different databases. The facade when initialized decided weather it needs an MySQL, MSSQL, Oracle, Informix or generic AnsiSQL-92 translator and performs the staments in native form. For example IsNull() is a function in MSSQL that has a counter part in Oracle. The nullDefaultReplacement() method will produce the proper SQL for both databases. [Less]
Created 12 months ago.

0 Users

BitmapToHTML converts bitmaps to HTML tables and uses simple compression and an inline CSS stylesheet to reduce the size of the HTML table. Having a bitmap in an HTML table gives two benefits: ... [More] All images and text can be included in one file An inline CSS Stylesheet allows colours to be changed easily [Less]
Created 12 months ago.

0 Users

iPhone Jiggy app (beta)...Only tested on 1.1.2 and 1.1.4 (iPhone)]Magyar "fejlesztés" :D... Az egri Wigner Jenő iskolának az óra rendje... Később: -Beállíthatók lesznek az időközök ... [More] és az időpontok -új ikon kép és betöltő kép -angol fordítás http://jiggyapp.com/ http://groups.google.com/group/jiggyapp-devel Jiggy runtime: Add the Jiggy repository to Installer. Just launch Installer, click on the “Sources” button, click on “Edit” at the top right and then “Add”. Enter the following URL http://jiggyapp.com/i Then, hit “OK”. Once the sources are refreshed you will see two new packages under the “Development” category. First, install the one called Jiggy Runtime. [Less]
Created 12 months ago.

0 Users

Table game with cards
Created about 1 month ago.

0 Users

GWTLib is a lightweight GWT widget library that currently includes MenuBar, PagingBar, Table, PagingTable and StyleListBox widgets. It does not rely on any external Javascript libraries and has no ... [More] dependencies except GWT itself. GWTLib is compatible with GWT 1.5 and higher. The MenuBar widget is an extension of the standard GWT MenuBar that adds menu item toggling and enabling/disabling. The PagingBar widget can be used to navigate through any given number of items. The total number of items, the page size (which may be one) and the page size presets can all be configured. The Table widget has the following features: ContentProvider interface for data retrieval. Renderer interface for rendering different types of data. Currently included implementations are StringRenderer (the default), NumberRenderer, DateTimeRenderer, CheckBoxRenderer, ListBoxRenderer, ButtonRenderer, TextBoxRenderer, HyperlinkRenderer and ImageRenderer. The sample demonstrates all nine. Sorting support. Client side caching. Row, column and cell selection. In its most simple form, it just renders strings: The PagingTable combines the Table and PagingBar widgets and adds pagination to the standard table. Like Table itself, it is not limited to displaying strings, but can display any widget in its cells using the included or custom Renderer implementations. The StyleListBox widget adds style support to individual items of the standard GWT ListBox. NewsSaturday, May 2, 2009 GWTLib 0.1.6 has been released and is available for download. It adds more default renderers, renderer tooltips and the column select state. Friday, May 1, 2009 GWTLib 0.1.5 has been released and is available for download. This release requires at least GWT 1.5 and adds menu item enabling/disabling to the standard GWT menu. Tuesday, November 4, 2008 GWTLib 0.1.4 has been released and is available for download. This release adds toggle menu item support to the standard GWT menu. Please note that this is the last version compatible with GWT 1.4.x. Tuesday, October 21, 2008 GWTLib 0.1.3 has been released and is available for download. Besides bug fixes, this release adds basic scrolling support to the table. Please see CHANGES.TXT for more details. Wednesday, May 7, 2008 GWTLib 0.1.2 has been released and is available for download. The focus of this release is bug fixes. Please see CHANGES.TXT for the change log. Thursday, May 1, 2008 GWTLib 0.1.1 has been released and is available for download. Please see CHANGES.TXT for the change log. Monday, April 28, 2008 GWTLib 0.1.0 has been released and is available for download! In addition to adding the build script and tweaking the resources, I have also added two more table examples. One demonstrates a minimalistic table (a good starting point), the other shows how to use a RPC service with the table. Sunday, April 27, 2008 The initial code has been checked in! [Less]
Created 12 months ago.

0 Users

GWT Advanced TableGWT table widget supporting paging, sorting and filtering IntroductionGWT Advanced Table is GWT table widget that supports row paging, column sorting and data filtering. It ... [More] provides a table model service interface that is used as data provider that can be implemented by database, Hibernate or other back-end. The front-end component is reusable and customizable. The full source code is available as freeware. News 9-November-2007 Implemented multiple row selection feature This is how the GWT Advanced Table looks like now: 8-November-2007 Fixed a bug with incorrect sizing and scrolling of the table Now the table works correctly in Mozilla and IE with size given as pixels or as percents 5-September-2007 Fixed problem with NULL values in the data rows Added "hide first column" feature Added RowSelectionListener for handling the "select row" event (assuming the first column is the table primary key) 20-August-2007 The first version of the AdvancedTable widget published as open source project. PreviewThis is how the GWT Advanced Table looks like: How to run the exampleTo run the example you need to download the Eclipse project and run it. We have provided scripts for compilation and execution. How to use the code1. Implement the interface TableModelService: public interface TableModelService extends RemoteService { public TableColumn[] getColumns(); public int getRowsCount(DataFilter[] filters); public String[][] getRows(int startRow, int rowsCount, DataFilter[] filters, String sortColumn, boolean sortOrder); }2. Create AdvancedTable widget, assign table model and add it to the root panel: AdvancedTable table = new AdvancedTable(); TableModelServiceAsync someTableService = ; table.setTableModelService(usersTableService); RootPanel.get().add(table);LicenseThis software is freeware. Use it at your own risk. Credits(c) 2007 by Svetlin Nakov - http://www.nakov.com (c) National Academy for Software Development - http://academy.devbg.org [Less]
Created 12 months ago.

0 Users

GWT-Masterview library is an extension to Google Web Toolkit that provides widgets to filter, sort and paginate your data. It's easy to use, it's widgets are fast and it works right out of the box: ... [More] you can display your objects with just 3-4 lines of code. Initially I started to look for a replacement to the Displaytag library, which can't be used in pure GWT applications. Some GWT-extending libraries provided tables, but these tables either were just wrappers of external JavaScript toolkits, or didn't have filter or paging functionality. So I wrote my own small library, with API similar to the one that Displaytag has, and named it Masterview, because I find it simple to create master screens using it. NOTE: The beta is ready. I'll import it into svn in a day or two. A tutorial on how to start using the library can be found here. Masterview library has several predefined themes, but default one looks like this (you can read more about using predefined themes or creating your own here): The main features of the libraryThe Masterview library uses no external JavaScript, only extending basic GWT widgets. It has several advantages: Smooth integration with standart GWT widgets and their extensions. Easy debugging in browser hosted mode. Advantage of improving GWT compiler's optimization. The API is similar to the one Displaytag library has. The only difference is that you write Java code instead of jsp tags. For example, instead of writing something like this you'll write MasterView masterView = GWT.create(Person.class); masterview.setItems(people); masterview.appendColumn(new Column("firstName", "First name", false, "40%"); masterview.appendColumn(new Column("lastName", "Last name", true, "60%"); RootPanel.get().add(masterview);You don't have to rewrite any existing code, except one thing: you need to mark beans that are to be displayed in a table with IsMasterviewBean interface. After that the library will create your table with the help of GWT's generators. Library is provided with a number of default themes. Built-in paging and sorting. Items can be filtered based on simple regular expressions (your can read about it here). The limitations of the libraryIf you want to display a bean, which has associated bean as a property, than you can't display properties of the associated bean. For example, if there is a Person bean with a getAddress() method thatreturns an Address bean, it's not possible to display city property of the Address bean like that: MasterView masterView = GWT.create(Person.class); masterview.appendColumn(new Column("address.city", "Person's city", true, "100%");One possible solution (if there is an absolute need to display person's city in a table) is to add getCity() method to Person bean with code like this: public String getCity() { Address address = getAddress(); if (null == address) { return "---"; //or something } return address.getCity(); }and create the grid's column like this: MasterView masterView = GWT.create(Person.class); masterview.appendColumn(new Column("city", "Person's city", true, "100%"); [Less]
Created 12 months ago.

0 Users

A table editor by jQuery. ver 0.1 implement createtable.
Created 11 months ago.