Projects tagged ‘ajax’ and ‘table’


Jump to tag:

Projects tagged ‘ajax’ and ‘table’

Filtered by Project Tags ajax table

Refine results Project Tags javascript (8) gwt (5) mysql (3) grid (3) jquery (3) web (3) sorting (2) php (2) plugin (2) java (2) widgets (1) paging (1)

[12 total ]

1 Users

What Is TIAMOT?TIAMOT is a fully featured AJAX table. It can take any MySQL table and generate a HTML table for all the fields you specify. That's not it though the table comes with some excellent ... [More] features, like these: Adding information on-the-fly. Removing information on-the-fly. Editing information on-the-fly. Sorting the table by any of the fields contents on-the-fly. Table is resorted on-the-fly after adding, editing or deleting. Can be added to any page using 4 simple functions after PHP file inclusion. Most of these features were suggested by visitors of my website and I wish to thank them for all of their help. We are currently up to version 2.2 (Minor Bug Fixes + Required Fields Added) but I will be releasing a new version soon with some more upgrades, hopefully. Why TIAMOT?I made TIAMOT as a experiment and test of my coding skill about 11/2 year ago then realised that some people were looking for something very similar, but no-one could find anything. I eventually decided to release a prototype version which only had adding & removing features and was fairly popular, I then added editing by request & finally sorting. That takes us just about up to the latest version which has all features combined. Thank YousI wish to thank everyone who has downloaded TIAMOT so far & everyone who suggested features. Also thank you to John Resig & the jQuery team for making jQuery. Thank you to Mika Tuupola, Dylan Verheul for the use of jEditable. Thank you to Christian Bach for the use of Tablesorter. CopyrightI have licenced this code under GNU v3 but jQuery & the previously mentioned plugins are licensed under their respective licenses. Only TIAMOT itself is licensed under GNU v3. DonationsI do not charge for any of my code but I takes a long time to develop and code, yada, yada, yada. You've probably heard all that before so I won't bore you. Basically if you like this project enough to leave me a few quid then please go to my donation page. [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

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

Transforms a table of stage names and start and stop date and times into a Gantt chart for visually representing events that span times greater than a day. Useful for implementing scheduling interfaces.
Created 3 months ago.

0 Users

A JavaScript grid component for displaying and editing tabular data in DHTML-based tables. The grid provides rich client-side API, column sorting and resizing capabilities, multiple in-cell editors ... [More] , filtering, searching and grouping functionality, etc. [Less]
Created 11 months ago.

0 Users

JCS GWT Components is a library of reusable widgets and other components. Some of the included widgets and utility classes are: DynamicTable - scrolling table that supports Remote and local ... [More] models. Pretty much anything you can think of can be put into a TableModel Very large models (tested with upwards of 100 million rows) Column sorting and configurable columns Export to multiple formats (PDF, CSV, etc), with plugin-style support for additional formats Simple to configure for basic usage ScrollBar - stand-alone vertical scrollbar widget, for those times that a ScrollPanel just isn't what you need LightBox - simple modal popup panel that shades out the content behind it Notifier - Growl-style notifications that stack up in the upper-righthand corner of the screen Element effects - fade-in and fade-out effects for UI elements FocusGroup - allows easy focus-tracking on composite widgets that contain multiple child widgets that should be treated as a single focus element (e.g. 3 TextBox widgets for a phone number, where you do not want the blur event to fire until the last one loses focus) ClassReference - eliminates hardcoding of server-side class names when they are needed on the client, making refactoring much simpler Components that are partly complete, and will be finished within the next few weeks: Data - a generic SDO that is RPC serialization-friendly, while supporting complex structures and metadata MVC - a reimplementation of a robust GWT MVC framework we have used on other projects, with enhancements such as: Nesting/chaining of MVC triads, better supporting the component oriented model that GWT follows Declarative data validation with mostly automatic wiring of validation triggers and mapping of validation results to UI elements All UI components support theming. The component library comes with a default theme, and theme packages can be provided as a GWT module. The default theme is currently a work-in-progress, as additional styling work is needed. A draft kitchen-sink application is available here Javadocs are available here [Less]
Created 3 months ago.

0 Users

I've made this application, because I need JQuery plugin to manipulate and represent tabular data. At the same time table should be populated with AJAX, should be sortable and pageable, shouldn't be ... [More] so heavy as jqGrid (but i love this plugin too). This plugin is fully tested under Firefox 3 and IE 8. Really don't know if it works under IE 6-7 or other browsers... hope you mail me if your test would have success. [Less]
Created 4 months ago.

0 Users

A PHP library by http://www.freelance-soft.com that allows you to create html tables from a mysql database ( DataGrid ). Supports sorting, paging, inner joins, left joins right joins, where ... [More] conditions, drop down lists in cells, customization by css, etc. [Less]
Created 11 months ago.

0 Users

javascript实现的动态表格,可以显示,增加,修改,删除表格内容,按表格列进行排序. 使用AJAX方式可以进行表格内容的实际更新。 ... [More] 项目改为jQuery实现,更好的适应性,样式可以由CSS自行控制,Server端只需要输出固定格式的字符串即可. 最佳适用于系统后台的快速开发,对数据的列表与增删改的实现。 [Less]
Created 12 months ago.

0 Users

Jarics GridInstead of building native js code, I use GWT1.5 classes and create a grid where you can set a List of Objects that implements a Gridable interface. You will find a test package to get an ... [More] example of how to use this grid. Preparation stepsMettre le jar dans ton buildPath de projet Mettre la clause qui suit dans votre module (dans le gwt.xml du projet): Ajouter ce qui suit dans ton .html : How to use itpublic Widget() { absolutePanel = new AbsolutePanel(); ... detailsGrid = new JaricsGrid(); absolutePanel.add(detailsGrid, 10, 455); detailsGrid.setSize("509px", "160px"); ... }DTO implements Gridableexemples: DTO wDTO = (DTO)detailsGrid.getSelectedObject(); detailsGrid.setObjects(wDTOs, DTO.getColumnConfig()); [Less]
Created 11 months ago.