You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my code i am often trying to load a table that might have no data in it. I was hoping to get the noResults message of "No matching records" instead of my js returning. By commenting out this section here in v-client-table.js create method
// if (!this.data.length) {
// console.error("v-client-table: the data array must have at least one row object.");
// return;
// }
It seems to have the wanted effect of telling me that i have no matching records. Leads me to believe that you already handle this issue. Might be totally mistaken here though.
The text was updated successfully, but these errors were encountered:
In my code i am often trying to load a table that might have no data in it. I was hoping to get the noResults message of "No matching records" instead of my js returning. By commenting out this section here in v-client-table.js create method
// if (!this.data.length) {
// console.error("v-client-table: the data array must have at least one row object.");
// return;
// }
It seems to have the wanted effect of telling me that i have no matching records. Leads me to believe that you already handle this issue. Might be totally mistaken here though.
The text was updated successfully, but these errors were encountered: