Xataface DataGrid Module 0.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Xataface DataGrid Module 0.1 (Default branch)
# 1  
Old 12-31-2008
Xataface DataGrid Module 0.1 (Default branch)

Image The Xataface DataGrid Module is an add-on module for the Xataface application framework that adds an editable grid component to your applications. It uses the Ext JS JavaScript library to create the grid. It allows users to edit records, add new rows, sort rows, reorder columns, show/hide columns, and toggle to full-screen mode. Changes are automatically saved in the background by AJAX. The module is fully integrated into the Xataface permissions system. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Module::Pluggable::Object(3perl)			 Perl Programmers Reference Guide			  Module::Pluggable::Object(3perl)

NAME
Module::Pluggable::Object - automatically give your module the ability to have plugins SYNOPSIS
Simple use Module::Pluggable - package MyClass; use Module::Pluggable::Object; my $finder = Module::Pluggable::Object->new(%opts); print "My plugins are: ".join(", ", $finder->plugins)." "; DESCRIPTION
Provides a simple but, hopefully, extensible way of having 'plugins' for your module. Obviously this isn't going to be the be all and end all of solutions but it works for me. Essentially all it does is export a method into your namespace that looks through a search path for .pm files and turn those into class names. Optionally it instantiates those classes for you. This object is wrapped by "Module::Pluggable". If you want to do something odd or add non-general special features you're probably best to wrap this and produce your own subclass. OPTIONS
See the "Module::Pluggable" docs. AUTHOR
Simon Wistow <simon@thegestalt.org> COPYING
Copyright, 2006 Simon Wistow Distributed under the same terms as Perl itself. BUGS
None known. SEE ALSO
Module::Pluggable perl v5.14.2 2010-12-30 Module::Pluggable::Object(3perl)