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
I believe that searching is flawed. Here's the behavior I would expect:
Search text should find both matching groups and values where:
Groups and values that do not match should both be hidden
Matching groups should show all of their values even if the values themselves don't match the search text
As it is, if a list of groups is fairly long, it can be really difficult to find the entry you are looking for. It should instead appropriately filter it to make selection effortless.
Finally, it is possible that other users need a different behavior. In this case, you could expose an event to allow for results filtering based on the desired outcome, or you could add CSS classes that would get us there. Thanks
The text was updated successfully, but these errors were encountered:
Search for <0,i.toggleClass("hidden",s.hidden) in the minimized version, and add ,i.parent().parent().toggleClass("hidden",s.hidden) immediately after that.
Search for s.find("em").text(t.ftxt.val()),t.selAllState();, and add hideSumoOptGroups(e,t) immediately after that.
Add the following code block under the minimized js code
function hideSumoOptGroups(e,t) { t.optDiv.find("ul.options li.opt").not(".hidden").each(function(l,i){ var i=e(i); i.parent().parent().removeClass('hidden'); }); }
I believe that searching is flawed. Here's the behavior I would expect:
As it is, if a list of groups is fairly long, it can be really difficult to find the entry you are looking for. It should instead appropriately filter it to make selection effortless.
Finally, it is possible that other users need a different behavior. In this case, you could expose an event to allow for results filtering based on the desired outcome, or you could add CSS classes that would get us there. Thanks
The text was updated successfully, but these errors were encountered: