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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by jonen, Thu Mar 20 03:49:22 2003 UTC revision 1.3 by jonen, Mon Nov 15 16:52:04 2004 UTC
# Line 4  Line 4 
4  ##    $Id$  ##    $Id$
5  ##    -----------------------------------------------------------------------------  ##    -----------------------------------------------------------------------------
6  ##    $Log$  ##    $Log$
7    ##    Revision 1.3  2004/11/15 16:52:04  jonen
8    ##    + added var 'numrows' to constructor args
9    ##
10    ##    Revision 1.2  2003/04/09 00:38:54  jonen
11    ##    + enabled action columns and actionbar
12    ##
13  ##    Revision 1.1  2003/03/20 03:49:22  jonen  ##    Revision 1.1  2003/03/20 03:49:22  jonen
14  ##    + initial commit  ##    + initial commit
15  ##  ##
# Line 20  class WebExplorer_Module_DataList extend Line 26  class WebExplorer_Module_DataList extend
26    
27    function set_gui_object() {    function set_gui_object() {
28       //print "Options: " . Dumper($this->_args);       //print "Options: " . Dumper($this->_args);
29       $list = new GenericGUIDataList($this->_args['caption'], 600, $this->_args['orderby'], FALSE, $this->_args['options']);       $list = new GenericGUIDataList($this->_args['caption'], 600, $this->_args['orderby'], FALSE, 30, $this->_args['options']);
30         $list->set_form_method('POST');
31         // set name of unique ident which exists for each data rowset/object
32         $unique_ident_name = "guid";
33         // enable action button for each row
34         $list->add_action_column('checkbox', 'FIRST', $unique_ident_name);
35         // enable actionbar for the action buttons
36         $list->set_actionbar();
37    
38       $this->_gui_object = &$list;       $this->_gui_object = &$list;
39    }    }
40    

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.3

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