Simple module title breadcrumb
OK, I know I've done this before, but for the life of me I cannot remember. In a simple module, how do I override the 'breadcrumb' title that appears when I'm editing a record? In my case, I have two fields in the database - first/last name - but the breadcrumb is just showing the first name. (first field)
Comments
function _common_query() { parent::_common_query(); $this->db->select('mytable.*, CONCAT(mytable.first_name, ' ', mytable.last_name) as full_name, FALSE); }
---
Unknown column 'full_name' in 'field list'
SELECT id, full_name FROM (`table`) ORDER BY `full_name` asc
--
I do have a similar statement on list_items in the model that is working OK - is that related?