- Posts: 4
- Thank you received: 0
Hi-
Just to give an update on my previous post, I made a minor edit to the component code to bypass this issue.
In the file /components/com_grid/GridBuilder.php, I made a slight change to the code on line 585.
Change:
$q = "SELECT DISTINCT ".$this->dbo->quoteName($column->columnName)." FROM ".$this->dbo->quoteName($this->_config->tableName)." ORDER BY ".$this->dbo->quoteName($column->columnName)." ASC LIMIT 0, 100";
$q = "SELECT DISTINCT ".$this->dbo->quoteName($column->columnName)." FROM ".$this->dbo->quoteName($this->_config->tableName)." ORDER BY ".$this->dbo->quoteName($column->columnName)." ASC";
Please Log in or Create an account to join the conversation.