Hide Components when there are no Records
You can add a little JavaScript to a page that will hide a Data Component if there are no records to display.
One Easy Step
Add the following code to the JavaScript tab of your page.
TB.render('component_3', function(data) {
if (data.records === undefined || data.records.length === 0) {
data.ele.css('display','none')
}
});
Remember to change the component Id in the code to your component ID.