AR
Como fazer uma busca preencher formulário
Fechado
Senhores,
Estou aprendendo Adianti e preciso fazer uma simples tela onde eu faça uma busca através de um TDBEntry e seja retornado no formulário abaixo o registro selecionado. Segue o código:
Estou aprendendo Adianti e preciso fazer uma simples tela onde eu faça uma busca através de um TDBEntry e seja retornado no formulário abaixo o registro selecionado. Segue o código:
- <?php
- /**
- * ManualExameForm Registration
- * @author <your name here>
- */
- class ManualExameForm extends TPage
- {
- protected $form; // form
- /**
- * Class constructor
- * Creates the page and the registration form
- */
- function __construct()
- {
- parent::__construct();
- // creates the form
- $this->form = new TForm('form_ManualExame');
- $this->form->class = 'tform'; // CSS class
- $this->form->style = 'width: 950px';
- // add a table inside form
- $table = new TTable;
- $table-> width = '100%';
- $this->form->add($table);
- // add a row for the form title
- $row = $table->addRow();
- $row->class = 'tformtitle'; // CSS class
- $row->addCell( $busca = new TDBEntry('busca', 'softlab', 'ManualExame', 'cod_ajuda'),'right' )->colspan=2;
- // create the form fields
- $cod_ajuda = new TEntry('cod_ajuda');
- $titulo_ajuda = new TEntry('titulo_ajuda');
- $descr_ajuda = new TText('descr_ajuda');
- // define the sizes
- $busca->setSize(940);
- $cod_ajuda->setSize(200);
- $titulo_ajuda->setSize(800);
- $descr_ajuda->setSize(800, 800);
- // add one row for each form field
- $table->addRowSet( new TLabel('MNEMÔNICO: '), $cod_ajuda );
- $table->addRowSet( new TLabel('TÍTULO: '), $titulo_ajuda );
- $table->addRowSet( new TLabel('MANUAL: '), $descr_ajuda );
- $this->form->setFields(array($cod_ajuda,$titulo_ajuda,$descr_ajuda));
- parent::add($this->form);
- }
- }
Alguém dá uma ideia de como posso fazer e principalmente porque o campo TDBEntry não está funcionando.
Alisson
A busca deve ser feita em um lista e não num form. se usa o studio pro crie uma nova lista pelo passo a passo e selecione o TDBEntry.
Exemplo completo
www.adianti.com.br/framework_files/tutor/index.php?class=CustomerDat