[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 594: sizeof(): Parameter must be an array or an object that implements Countable
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 650: sizeof(): Parameter must be an array or an object that implements Countable
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 1110: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 1110: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 1110: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5277: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5277: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5277: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
Fórum Xmaker • Filtro DBgrid
Página 1 de 1

Filtro DBgrid

Enviado: Abril 5th, 2011, 11:21 am
por Adilson
Prezados,

poderiam me ajudar como fazer filtro na GRID.
exemplo:
tenho um campo chamado flag
queria q toda a vez que a grid aparecer na tela o filtro seja flag = 1
não quero fazer filtro na tabela da base de dados ok ?
agradeço .

[]´s

Re: Filtro DBgrid

Enviado: Abril 5th, 2011, 11:46 am
por Gustavo
olá,
se não for um DBGrid, apenas um Grid simples para popular os dados você deve controlar através de um condicional: "if flag= 1" então popular.

Caso seja um DBGrid você pode criar um filtro local para essa tarefa, use o recurso "TabGlobal.suatabela.Filtro", use da seguinte fórmula:

TabGlobal.DRESERVA_PEDIDO.filtro.clear;
TabGlobal.DRESERVA_PEDIDO.filtro.add('NUM_PEDIDO_RESERVA='+TabGlobal.DRESERVA_PEDIDO.NUM_PEDIDO_RESERVA.valorstring);
TabGlobal.DRESERVA_PEDIDO.atualizasql;


Sendo que no evento de saída por exemplo, no fechamento do form, você deve limpar esse filtro:

TabGlobal.DRESERVA_PEDIDO.filtro.clear;
TabGlobal.DRESERVA_PEDIDO.atualizasql;