When your page has no results, what do you show?
I am paginating a data table and have different views in my application where each view has its own rows. Some views may have data, some may not
Showing 1-0 of 0 Page 1 of 0
is what I am showing on a page with no rows
If I had some rows to display, it would be
Showing 1-30 of 45 Page 1 of 1
What do I display in the empty case?
Some possibilities
- Showing 0-0 of 0 Page 1 of 1
- Showing 0-1 of 1 Page 1 of 1
What do I do here
tables data-tables pagination
add a comment |
I am paginating a data table and have different views in my application where each view has its own rows. Some views may have data, some may not
Showing 1-0 of 0 Page 1 of 0
is what I am showing on a page with no rows
If I had some rows to display, it would be
Showing 1-30 of 45 Page 1 of 1
What do I display in the empty case?
Some possibilities
- Showing 0-0 of 0 Page 1 of 1
- Showing 0-1 of 1 Page 1 of 1
What do I do here
tables data-tables pagination
1
Sounds terrible, what's the reason for data not being available? Is this triggered by a user search?
– DarrylGodden
22 hours ago
@DarrylGodden i have financial data coming in from external APIs shown in the same table but divided as views, it takes me some time to get the data up and running on some views sometimes so if you load the website initially when it just boots it wont have anything to show, there is pagination but some views may have data some may not
– PirateApp
20 hours ago
2
@PirateApp "It takes some time"? So the area isn't "nothing matches your criteria" it's "still loading"?
– Kamil Drakari
17 hours ago
1
There's some answers below, one of which seems quite popular, my view would be to look at refining the queries that pull in the data and the potential to make efficiencies at that end, alongside the queries and reduce the possibility that the user could end up with no data to show.
– DarrylGodden
16 hours ago
add a comment |
I am paginating a data table and have different views in my application where each view has its own rows. Some views may have data, some may not
Showing 1-0 of 0 Page 1 of 0
is what I am showing on a page with no rows
If I had some rows to display, it would be
Showing 1-30 of 45 Page 1 of 1
What do I display in the empty case?
Some possibilities
- Showing 0-0 of 0 Page 1 of 1
- Showing 0-1 of 1 Page 1 of 1
What do I do here
tables data-tables pagination
I am paginating a data table and have different views in my application where each view has its own rows. Some views may have data, some may not
Showing 1-0 of 0 Page 1 of 0
is what I am showing on a page with no rows
If I had some rows to display, it would be
Showing 1-30 of 45 Page 1 of 1
What do I display in the empty case?
Some possibilities
- Showing 0-0 of 0 Page 1 of 1
- Showing 0-1 of 1 Page 1 of 1
What do I do here
tables data-tables pagination
tables data-tables pagination
asked yesterday
PirateAppPirateApp
34629
34629
1
Sounds terrible, what's the reason for data not being available? Is this triggered by a user search?
– DarrylGodden
22 hours ago
@DarrylGodden i have financial data coming in from external APIs shown in the same table but divided as views, it takes me some time to get the data up and running on some views sometimes so if you load the website initially when it just boots it wont have anything to show, there is pagination but some views may have data some may not
– PirateApp
20 hours ago
2
@PirateApp "It takes some time"? So the area isn't "nothing matches your criteria" it's "still loading"?
– Kamil Drakari
17 hours ago
1
There's some answers below, one of which seems quite popular, my view would be to look at refining the queries that pull in the data and the potential to make efficiencies at that end, alongside the queries and reduce the possibility that the user could end up with no data to show.
– DarrylGodden
16 hours ago
add a comment |
1
Sounds terrible, what's the reason for data not being available? Is this triggered by a user search?
– DarrylGodden
22 hours ago
@DarrylGodden i have financial data coming in from external APIs shown in the same table but divided as views, it takes me some time to get the data up and running on some views sometimes so if you load the website initially when it just boots it wont have anything to show, there is pagination but some views may have data some may not
– PirateApp
20 hours ago
2
@PirateApp "It takes some time"? So the area isn't "nothing matches your criteria" it's "still loading"?
– Kamil Drakari
17 hours ago
1
There's some answers below, one of which seems quite popular, my view would be to look at refining the queries that pull in the data and the potential to make efficiencies at that end, alongside the queries and reduce the possibility that the user could end up with no data to show.
– DarrylGodden
16 hours ago
1
1
Sounds terrible, what's the reason for data not being available? Is this triggered by a user search?
– DarrylGodden
22 hours ago
Sounds terrible, what's the reason for data not being available? Is this triggered by a user search?
– DarrylGodden
22 hours ago
@DarrylGodden i have financial data coming in from external APIs shown in the same table but divided as views, it takes me some time to get the data up and running on some views sometimes so if you load the website initially when it just boots it wont have anything to show, there is pagination but some views may have data some may not
– PirateApp
20 hours ago
@DarrylGodden i have financial data coming in from external APIs shown in the same table but divided as views, it takes me some time to get the data up and running on some views sometimes so if you load the website initially when it just boots it wont have anything to show, there is pagination but some views may have data some may not
– PirateApp
20 hours ago
2
2
@PirateApp "It takes some time"? So the area isn't "nothing matches your criteria" it's "still loading"?
– Kamil Drakari
17 hours ago
@PirateApp "It takes some time"? So the area isn't "nothing matches your criteria" it's "still loading"?
– Kamil Drakari
17 hours ago
1
1
There's some answers below, one of which seems quite popular, my view would be to look at refining the queries that pull in the data and the potential to make efficiencies at that end, alongside the queries and reduce the possibility that the user could end up with no data to show.
– DarrylGodden
16 hours ago
There's some answers below, one of which seems quite popular, my view would be to look at refining the queries that pull in the data and the potential to make efficiencies at that end, alongside the queries and reduce the possibility that the user could end up with no data to show.
– DarrylGodden
16 hours ago
add a comment |
3 Answers
3
active
oldest
votes
For this situation you can use an empty state which can be just text or a graphic with text and an action button.
Example of an empty state from Product Hunt:
Good empty states will give the users an action button which can push them in the right direction. A button with something like "Refine your search" might work in this case.
It doesn't make sense to show any pagination because there are no results let alone one or even half a page of results.
@Zasul yeah sorry, it took me a bit of time to find the correct article and image! By the time I'd finished my post you already posted.
– RobbyReindeer
20 hours ago
Sorry ... I noticed its a 2 - 3 minutes window :D, it
s a common sense answer.
– Zasul
20 hours ago
@Zasul, I upvoted you if that's any consolation :D
– RobbyReindeer
18 hours ago
3
Please only show that panel when you actually did search. I know too many unreliable web apps, which show "no results" when there was a timeout or even while performing the actual search.
– Christian Strempfer
13 hours ago
add a comment |
I would hide Showing "0 results from 0 results".
Instead I would add in place a Blank State image with a button for the user to add data. ( If the user adds the data ).
Displaying a pagination where there are no results is purely an artefact of a not so good UX.
Example :
add a comment |
For completeness, there's a canonical bad solution to this that is extremely common: quietly (maybe even silently) generalize the user's query until the set of results is non-empty, and show them results that they weren't looking for. Sometimes this takes the form of guessing at other searches they might have meant, Other times it's just putting advertisements in their face.
Obviously (or maybe not so obviously, since it's so common), don't do this.
3
Note: Google also includes a button for "Search instead for [X]," which is a requirement for this feature to be acceptable.
– James G.
14 hours ago
4
@JamesG.: It also does that when you didn't misspell your query but it's an uncommon or foreign word. It also shows you high-rank results that omit one or more of your search terms (sometimes quietly mentioning that under the result) or that only include words it thinks are synonyms for one of your search terms (which possibly are not synonyms in the context you were looking for). All of this is extremely bad ux.
– R..
14 hours ago
3
Netflix does this when they don't have the movie you were searching for--they instead show you movies that are similar to the one you were actually trying to find. I'm undecided as to whether or not I like this route.
– Ectropy
13 hours ago
6
@Ectropy: It would be so much better if they showed you the movie that you were obviously searching for, acknowledging that it exists but they don't have streaming rights to it, and indicated whether you could get it with their DVDs-by-mail service (which still exists, right?), and only then offered to show you similar movies you might like.
– R..
13 hours ago
2
@BlueRaja-DannyPflughoeft: It's not always fuzzy-searching. Google seems to actively omit some of your search terms when it thinks you'll get "better" results without them, rather than using any distance function. But conceptually, fuzzy searching is also a generalization of the user's query, even if the mechanism is to generalize by admitting low-distance results.
– R..
10 hours ago
|
show 2 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "102"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f123222%2fwhen-your-page-has-no-results-what-do-you-show%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
For this situation you can use an empty state which can be just text or a graphic with text and an action button.
Example of an empty state from Product Hunt:
Good empty states will give the users an action button which can push them in the right direction. A button with something like "Refine your search" might work in this case.
It doesn't make sense to show any pagination because there are no results let alone one or even half a page of results.
@Zasul yeah sorry, it took me a bit of time to find the correct article and image! By the time I'd finished my post you already posted.
– RobbyReindeer
20 hours ago
Sorry ... I noticed its a 2 - 3 minutes window :D, it
s a common sense answer.
– Zasul
20 hours ago
@Zasul, I upvoted you if that's any consolation :D
– RobbyReindeer
18 hours ago
3
Please only show that panel when you actually did search. I know too many unreliable web apps, which show "no results" when there was a timeout or even while performing the actual search.
– Christian Strempfer
13 hours ago
add a comment |
For this situation you can use an empty state which can be just text or a graphic with text and an action button.
Example of an empty state from Product Hunt:
Good empty states will give the users an action button which can push them in the right direction. A button with something like "Refine your search" might work in this case.
It doesn't make sense to show any pagination because there are no results let alone one or even half a page of results.
@Zasul yeah sorry, it took me a bit of time to find the correct article and image! By the time I'd finished my post you already posted.
– RobbyReindeer
20 hours ago
Sorry ... I noticed its a 2 - 3 minutes window :D, it
s a common sense answer.
– Zasul
20 hours ago
@Zasul, I upvoted you if that's any consolation :D
– RobbyReindeer
18 hours ago
3
Please only show that panel when you actually did search. I know too many unreliable web apps, which show "no results" when there was a timeout or even while performing the actual search.
– Christian Strempfer
13 hours ago
add a comment |
For this situation you can use an empty state which can be just text or a graphic with text and an action button.
Example of an empty state from Product Hunt:
Good empty states will give the users an action button which can push them in the right direction. A button with something like "Refine your search" might work in this case.
It doesn't make sense to show any pagination because there are no results let alone one or even half a page of results.
For this situation you can use an empty state which can be just text or a graphic with text and an action button.
Example of an empty state from Product Hunt:
Good empty states will give the users an action button which can push them in the right direction. A button with something like "Refine your search" might work in this case.
It doesn't make sense to show any pagination because there are no results let alone one or even half a page of results.
edited 23 hours ago
answered 23 hours ago
RobbyReindeerRobbyReindeer
4,8072244
4,8072244
@Zasul yeah sorry, it took me a bit of time to find the correct article and image! By the time I'd finished my post you already posted.
– RobbyReindeer
20 hours ago
Sorry ... I noticed its a 2 - 3 minutes window :D, it
s a common sense answer.
– Zasul
20 hours ago
@Zasul, I upvoted you if that's any consolation :D
– RobbyReindeer
18 hours ago
3
Please only show that panel when you actually did search. I know too many unreliable web apps, which show "no results" when there was a timeout or even while performing the actual search.
– Christian Strempfer
13 hours ago
add a comment |
@Zasul yeah sorry, it took me a bit of time to find the correct article and image! By the time I'd finished my post you already posted.
– RobbyReindeer
20 hours ago
Sorry ... I noticed its a 2 - 3 minutes window :D, it
s a common sense answer.
– Zasul
20 hours ago
@Zasul, I upvoted you if that's any consolation :D
– RobbyReindeer
18 hours ago
3
Please only show that panel when you actually did search. I know too many unreliable web apps, which show "no results" when there was a timeout or even while performing the actual search.
– Christian Strempfer
13 hours ago
@Zasul yeah sorry, it took me a bit of time to find the correct article and image! By the time I'd finished my post you already posted.
– RobbyReindeer
20 hours ago
@Zasul yeah sorry, it took me a bit of time to find the correct article and image! By the time I'd finished my post you already posted.
– RobbyReindeer
20 hours ago
Sorry ... I noticed it
s a 2 - 3 minutes window :D, it
s a common sense answer.– Zasul
20 hours ago
Sorry ... I noticed it
s a 2 - 3 minutes window :D, it
s a common sense answer.– Zasul
20 hours ago
@Zasul, I upvoted you if that's any consolation :D
– RobbyReindeer
18 hours ago
@Zasul, I upvoted you if that's any consolation :D
– RobbyReindeer
18 hours ago
3
3
Please only show that panel when you actually did search. I know too many unreliable web apps, which show "no results" when there was a timeout or even while performing the actual search.
– Christian Strempfer
13 hours ago
Please only show that panel when you actually did search. I know too many unreliable web apps, which show "no results" when there was a timeout or even while performing the actual search.
– Christian Strempfer
13 hours ago
add a comment |
I would hide Showing "0 results from 0 results".
Instead I would add in place a Blank State image with a button for the user to add data. ( If the user adds the data ).
Displaying a pagination where there are no results is purely an artefact of a not so good UX.
Example :
add a comment |
I would hide Showing "0 results from 0 results".
Instead I would add in place a Blank State image with a button for the user to add data. ( If the user adds the data ).
Displaying a pagination where there are no results is purely an artefact of a not so good UX.
Example :
add a comment |
I would hide Showing "0 results from 0 results".
Instead I would add in place a Blank State image with a button for the user to add data. ( If the user adds the data ).
Displaying a pagination where there are no results is purely an artefact of a not so good UX.
Example :
I would hide Showing "0 results from 0 results".
Instead I would add in place a Blank State image with a button for the user to add data. ( If the user adds the data ).
Displaying a pagination where there are no results is purely an artefact of a not so good UX.
Example :
answered yesterday
ZasulZasul
810213
810213
add a comment |
add a comment |
For completeness, there's a canonical bad solution to this that is extremely common: quietly (maybe even silently) generalize the user's query until the set of results is non-empty, and show them results that they weren't looking for. Sometimes this takes the form of guessing at other searches they might have meant, Other times it's just putting advertisements in their face.
Obviously (or maybe not so obviously, since it's so common), don't do this.
3
Note: Google also includes a button for "Search instead for [X]," which is a requirement for this feature to be acceptable.
– James G.
14 hours ago
4
@JamesG.: It also does that when you didn't misspell your query but it's an uncommon or foreign word. It also shows you high-rank results that omit one or more of your search terms (sometimes quietly mentioning that under the result) or that only include words it thinks are synonyms for one of your search terms (which possibly are not synonyms in the context you were looking for). All of this is extremely bad ux.
– R..
14 hours ago
3
Netflix does this when they don't have the movie you were searching for--they instead show you movies that are similar to the one you were actually trying to find. I'm undecided as to whether or not I like this route.
– Ectropy
13 hours ago
6
@Ectropy: It would be so much better if they showed you the movie that you were obviously searching for, acknowledging that it exists but they don't have streaming rights to it, and indicated whether you could get it with their DVDs-by-mail service (which still exists, right?), and only then offered to show you similar movies you might like.
– R..
13 hours ago
2
@BlueRaja-DannyPflughoeft: It's not always fuzzy-searching. Google seems to actively omit some of your search terms when it thinks you'll get "better" results without them, rather than using any distance function. But conceptually, fuzzy searching is also a generalization of the user's query, even if the mechanism is to generalize by admitting low-distance results.
– R..
10 hours ago
|
show 2 more comments
For completeness, there's a canonical bad solution to this that is extremely common: quietly (maybe even silently) generalize the user's query until the set of results is non-empty, and show them results that they weren't looking for. Sometimes this takes the form of guessing at other searches they might have meant, Other times it's just putting advertisements in their face.
Obviously (or maybe not so obviously, since it's so common), don't do this.
3
Note: Google also includes a button for "Search instead for [X]," which is a requirement for this feature to be acceptable.
– James G.
14 hours ago
4
@JamesG.: It also does that when you didn't misspell your query but it's an uncommon or foreign word. It also shows you high-rank results that omit one or more of your search terms (sometimes quietly mentioning that under the result) or that only include words it thinks are synonyms for one of your search terms (which possibly are not synonyms in the context you were looking for). All of this is extremely bad ux.
– R..
14 hours ago
3
Netflix does this when they don't have the movie you were searching for--they instead show you movies that are similar to the one you were actually trying to find. I'm undecided as to whether or not I like this route.
– Ectropy
13 hours ago
6
@Ectropy: It would be so much better if they showed you the movie that you were obviously searching for, acknowledging that it exists but they don't have streaming rights to it, and indicated whether you could get it with their DVDs-by-mail service (which still exists, right?), and only then offered to show you similar movies you might like.
– R..
13 hours ago
2
@BlueRaja-DannyPflughoeft: It's not always fuzzy-searching. Google seems to actively omit some of your search terms when it thinks you'll get "better" results without them, rather than using any distance function. But conceptually, fuzzy searching is also a generalization of the user's query, even if the mechanism is to generalize by admitting low-distance results.
– R..
10 hours ago
|
show 2 more comments
For completeness, there's a canonical bad solution to this that is extremely common: quietly (maybe even silently) generalize the user's query until the set of results is non-empty, and show them results that they weren't looking for. Sometimes this takes the form of guessing at other searches they might have meant, Other times it's just putting advertisements in their face.
Obviously (or maybe not so obviously, since it's so common), don't do this.
For completeness, there's a canonical bad solution to this that is extremely common: quietly (maybe even silently) generalize the user's query until the set of results is non-empty, and show them results that they weren't looking for. Sometimes this takes the form of guessing at other searches they might have meant, Other times it's just putting advertisements in their face.
Obviously (or maybe not so obviously, since it's so common), don't do this.
answered 15 hours ago
R..R..
1,51298
1,51298
3
Note: Google also includes a button for "Search instead for [X]," which is a requirement for this feature to be acceptable.
– James G.
14 hours ago
4
@JamesG.: It also does that when you didn't misspell your query but it's an uncommon or foreign word. It also shows you high-rank results that omit one or more of your search terms (sometimes quietly mentioning that under the result) or that only include words it thinks are synonyms for one of your search terms (which possibly are not synonyms in the context you were looking for). All of this is extremely bad ux.
– R..
14 hours ago
3
Netflix does this when they don't have the movie you were searching for--they instead show you movies that are similar to the one you were actually trying to find. I'm undecided as to whether or not I like this route.
– Ectropy
13 hours ago
6
@Ectropy: It would be so much better if they showed you the movie that you were obviously searching for, acknowledging that it exists but they don't have streaming rights to it, and indicated whether you could get it with their DVDs-by-mail service (which still exists, right?), and only then offered to show you similar movies you might like.
– R..
13 hours ago
2
@BlueRaja-DannyPflughoeft: It's not always fuzzy-searching. Google seems to actively omit some of your search terms when it thinks you'll get "better" results without them, rather than using any distance function. But conceptually, fuzzy searching is also a generalization of the user's query, even if the mechanism is to generalize by admitting low-distance results.
– R..
10 hours ago
|
show 2 more comments
3
Note: Google also includes a button for "Search instead for [X]," which is a requirement for this feature to be acceptable.
– James G.
14 hours ago
4
@JamesG.: It also does that when you didn't misspell your query but it's an uncommon or foreign word. It also shows you high-rank results that omit one or more of your search terms (sometimes quietly mentioning that under the result) or that only include words it thinks are synonyms for one of your search terms (which possibly are not synonyms in the context you were looking for). All of this is extremely bad ux.
– R..
14 hours ago
3
Netflix does this when they don't have the movie you were searching for--they instead show you movies that are similar to the one you were actually trying to find. I'm undecided as to whether or not I like this route.
– Ectropy
13 hours ago
6
@Ectropy: It would be so much better if they showed you the movie that you were obviously searching for, acknowledging that it exists but they don't have streaming rights to it, and indicated whether you could get it with their DVDs-by-mail service (which still exists, right?), and only then offered to show you similar movies you might like.
– R..
13 hours ago
2
@BlueRaja-DannyPflughoeft: It's not always fuzzy-searching. Google seems to actively omit some of your search terms when it thinks you'll get "better" results without them, rather than using any distance function. But conceptually, fuzzy searching is also a generalization of the user's query, even if the mechanism is to generalize by admitting low-distance results.
– R..
10 hours ago
3
3
Note: Google also includes a button for "Search instead for [X]," which is a requirement for this feature to be acceptable.
– James G.
14 hours ago
Note: Google also includes a button for "Search instead for [X]," which is a requirement for this feature to be acceptable.
– James G.
14 hours ago
4
4
@JamesG.: It also does that when you didn't misspell your query but it's an uncommon or foreign word. It also shows you high-rank results that omit one or more of your search terms (sometimes quietly mentioning that under the result) or that only include words it thinks are synonyms for one of your search terms (which possibly are not synonyms in the context you were looking for). All of this is extremely bad ux.
– R..
14 hours ago
@JamesG.: It also does that when you didn't misspell your query but it's an uncommon or foreign word. It also shows you high-rank results that omit one or more of your search terms (sometimes quietly mentioning that under the result) or that only include words it thinks are synonyms for one of your search terms (which possibly are not synonyms in the context you were looking for). All of this is extremely bad ux.
– R..
14 hours ago
3
3
Netflix does this when they don't have the movie you were searching for--they instead show you movies that are similar to the one you were actually trying to find. I'm undecided as to whether or not I like this route.
– Ectropy
13 hours ago
Netflix does this when they don't have the movie you were searching for--they instead show you movies that are similar to the one you were actually trying to find. I'm undecided as to whether or not I like this route.
– Ectropy
13 hours ago
6
6
@Ectropy: It would be so much better if they showed you the movie that you were obviously searching for, acknowledging that it exists but they don't have streaming rights to it, and indicated whether you could get it with their DVDs-by-mail service (which still exists, right?), and only then offered to show you similar movies you might like.
– R..
13 hours ago
@Ectropy: It would be so much better if they showed you the movie that you were obviously searching for, acknowledging that it exists but they don't have streaming rights to it, and indicated whether you could get it with their DVDs-by-mail service (which still exists, right?), and only then offered to show you similar movies you might like.
– R..
13 hours ago
2
2
@BlueRaja-DannyPflughoeft: It's not always fuzzy-searching. Google seems to actively omit some of your search terms when it thinks you'll get "better" results without them, rather than using any distance function. But conceptually, fuzzy searching is also a generalization of the user's query, even if the mechanism is to generalize by admitting low-distance results.
– R..
10 hours ago
@BlueRaja-DannyPflughoeft: It's not always fuzzy-searching. Google seems to actively omit some of your search terms when it thinks you'll get "better" results without them, rather than using any distance function. But conceptually, fuzzy searching is also a generalization of the user's query, even if the mechanism is to generalize by admitting low-distance results.
– R..
10 hours ago
|
show 2 more comments
Thanks for contributing an answer to User Experience Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f123222%2fwhen-your-page-has-no-results-what-do-you-show%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Sounds terrible, what's the reason for data not being available? Is this triggered by a user search?
– DarrylGodden
22 hours ago
@DarrylGodden i have financial data coming in from external APIs shown in the same table but divided as views, it takes me some time to get the data up and running on some views sometimes so if you load the website initially when it just boots it wont have anything to show, there is pagination but some views may have data some may not
– PirateApp
20 hours ago
2
@PirateApp "It takes some time"? So the area isn't "nothing matches your criteria" it's "still loading"?
– Kamil Drakari
17 hours ago
1
There's some answers below, one of which seems quite popular, my view would be to look at refining the queries that pull in the data and the potential to make efficiencies at that end, alongside the queries and reduce the possibility that the user could end up with no data to show.
– DarrylGodden
16 hours ago