Custom Object column filter on Report Model method getDataHTML
Content
Hi all,
Struggling with a problem here when utilizing the native Report_model and its method getDataHTML.
I'm constructing a call to the method, and building filters as I go along, for e.g. I have an organization ID filter which is like this:
$filters["organization_id"] = $this->Report_model->createSearchFilter($report_id, "organization_id", 1, (int) $_GET["supplier"], $rnSearchType = "filter", 1);
This works perfectly fine. However when I try and do the same thing on a custom object column (which is also setup as a filter on my report and named appropriately, just like organization ID) it returns no data.
0