Welcome Guest, Not a member yet? Register   Sign In
CodeExtinguisher v2.0 Release Candidate 12.3
#26

[eluser]abmcr[/eluser]
I have two question (excuse me ... i am beginner with CodeExtinguisher)

1) i have set in codex.php $config['codex_auto_generate_crud'] = false;
how i create my menu bar? navigator.php?

2) i have build a table
Code:
CREATE TABLE `related2` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(200) NOT NULL,
  `description` text NOT NULL,
  `example_id` int(11) NOT NULL,
  `foto` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
and in edit mode all field are displayed, but in overview no (see the image)
Code:
$config = array(
                    'db_table' => 'related2', //The name of the table associated with this controller
                    'form_setup' => $this->spyc->YAMLLOAD($this->codexadmin->getDefinitionFileName('esempio_form')),
                    'controller_name' => 'Esempio',
                    'primary_key' => 'id',
                    'display_fields'=>array('name','foto','example_id','description'),
                    'rules'=>$rules
                    );
        $this->setConfig($config);
and my yml file is
Code:
general_information:
    class: FieldSet
    params:
        form:
            name:
                class: TextBox
            example_id:
                class: TextBox
            description:
                class: TextArea
                attributes:
                    rows:5
                    cols:50
allegati:
    class: FieldSet
    params:
            form:
                 foto:
                      class: Image
                      params:
                             make_thumbnail: true
                             height:100
                             width:100
                             url_path: uploads/
                             upload_path: ./uploads/
Finally: where is the best way for generate a thumbnail and show it in overview mode?


Messages In This Thread
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-01-2008, 11:52 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 07:12 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:41 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:43 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:53 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:54 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:58 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 09:07 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 09:17 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 10:34 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 11:18 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 11:21 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 01:08 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 01:35 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-03-2008, 07:39 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-03-2008, 01:51 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-03-2008, 01:55 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-04-2008, 11:33 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-04-2008, 11:38 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 05:31 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 05:48 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 05:50 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 06:02 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 06:05 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 07:31 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 05:34 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 08:34 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:00 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:04 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:07 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:08 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 02:05 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 06:29 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 06:42 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:44 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:49 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:51 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:55 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:59 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 10:43 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-10-2008, 10:35 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-10-2008, 10:37 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-10-2008, 02:49 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 07:21 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 07:40 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 07:59 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 05:16 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 05:18 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 11:17 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 02-23-2009, 12:10 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 03-18-2009, 04:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB