I have one question, I search in the forum but i don't find any topic about this.
My question is:
In a relation 1 to N i have to get only some data of the table, no all data of table, so in my table i have one field to know what type of data is, so in grocery i use a callback_add_field function to create a select manually, and work ok, but i see in the forum the where function in a creation of the relation, so i try to use.
$crud->set_relation('id_parametro','parametros', 'nombre_parametro')->where('tipo_parametro', 'modalidad asesoria');
the table that i use to create the select is
CREATE TABLE IF NOT EXISTS `parametros` (
`id_parametros` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tipo_parametro` varchar(255) DEFAULT NULL,
`nombre_parametro` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id_parametros`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=67 ;
--
-- Dumping data for table `parametros`
--
INSERT INTO `parametros` (`id_parametros`, `tipo_parametro`, `nombre_parametro`) VALUES
(1, 'modalidad asesoria', 'Chat programado'),
(2, 'modalidad asesoria', 'Chat especÃfico para el tema consultado'),
(3, 'modalidad asesoria', 'Skipe o por programa de conferencia'),
(4, 'modalidad asesoria', 'Telefónicamente'),
(5, 'modalidad asesoria', 'Por correo electrónico'),
(6, 'modalidad asesoria', 'Presencialmente'),
(7, 'modalidad seguimiento', 'Por Formato'),
(8, 'modalidad seguimiento', 'Presencial'),
(9, 'modalidad seguimiento', 'Telefónico'),
(10, 'modalidad seguimiento', 'VÃa correo electrónico'),
(11, 'modalidad seguimiento', 'Skipe o programa de conferencia virtual'),
(12, 'modalidad seguimiento', 'Otro medio'), .....................
so the field tipo_parametro is the valua that i use to creade a select, i can use the where of grocery for search the data and i don't have to use the callback_add_field function?
thanks,
and more more thanks for this framewok.