- Posts: 7
- Thank you received: 0
Currently my page shows four tables.
Sometimes "No records found." is shown for some tables.
Is it possible to hide / disable a table which does not contain records?
Thank you!
brgs
Paul
Please Log in or Create an account to join the conversation.
Hi,
yes. Try to add this statement in \components\com_grid\layouts\GridView.php (in line 14, first statement in build function):
if ($this->rows ==0) return "";
Please Log in or Create an account to join the conversation.