/[cvs]/nfo/php/libs/org.netfrag.app/WebExplorer/Module/DataList.php
ViewVC logotype

Contents of /nfo/php/libs/org.netfrag.app/WebExplorer/Module/DataList.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations)
Mon Nov 15 16:52:04 2004 UTC (19 years, 9 months ago) by jonen
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +5 -2 lines
+ added var 'numrows' to constructor args

1 <?
2 /*
3 ## -----------------------------------------------------------------------------
4 ## $Id: DataList.php,v 1.2 2003/04/09 00:38:54 jonen Exp $
5 ## -----------------------------------------------------------------------------
6 ## $Log: DataList.php,v $
7 ## Revision 1.2 2003/04/09 00:38:54 jonen
8 ## + enabled action columns and actionbar
9 ##
10 ## Revision 1.1 2003/03/20 03:49:22 jonen
11 ## + initial commit
12 ##
13 ## Revision 1.1 2003/03/01 22:57:23 cvsmax
14 ## + inital commit
15 ##
16 ##
17 ## -----------------------------------------------------------------------------
18 */
19
20 loadModule('WebExplorer::Module::AbstractGUIModule');
21
22 class WebExplorer_Module_DataList extends WebExplorer_Module_AbstractGUIModule {
23
24 function set_gui_object() {
25 //print "Options: " . Dumper($this->_args);
26 $list = new GenericGUIDataList($this->_args['caption'], 600, $this->_args['orderby'], FALSE, 30, $this->_args['options']);
27 $list->set_form_method('POST');
28 // set name of unique ident which exists for each data rowset/object
29 $unique_ident_name = "guid";
30 // enable action button for each row
31 $list->add_action_column('checkbox', 'FIRST', $unique_ident_name);
32 // enable actionbar for the action buttons
33 $list->set_actionbar();
34
35 $this->_gui_object = &$list;
36 }
37
38 }
39
40 ?>

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed