-
Notifications
You must be signed in to change notification settings - Fork 345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[2.4] Feature/ui adhoc query #80
Conversation
… into feature/ui-adhoc_query
…iewing results for an an inactive or has_results=false query. Hide other queries' results when viewing another query's results. Display Query start time, rather than query handle. Update the list of queries based upon an interval (status, is_active, has_results attributes). Move navigational arrows up and to the left.
…depending on which page you are on).
…as expected with page-nav buttons, so leaving it commented for now.
…-side sorting of queries, that is handled completely on server side. Also, fix bug that occurred when a query's results had a null value in it.
-Moved query/results links to the left. -Removed tooltip from Results Link (when submitting a near query). -Instead, submitting a query takes you to results page. -Remove execute button from results page (undone for now). -Results and status columns collapsed and moved to the left of query.
load: function () { | ||
var self = this; | ||
C.fetchQueries = function(a,b,c){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why bind to a global variable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was for debugging purposes, removed now.
load: function () { | ||
var self = this; | ||
C.fetchQueries = function(a,b,c){ | ||
self.fetchQueries(a,b,c); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a,b,c doesn't make sense you can pass arguments as is if you need variable length arguments or use an object.
self.fetchQueries(arguments)
self.fetchQueries({
foo: bar
})
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was simply for debugging, removed now.
LGTM (for including in release), missing items listed as TODOs. |
moving docs from readmes into their own markdown files
Improvements and bugfixes to adhoc query UI.