- Oct 30, 2017
-
-
Jared Hancock authored
- Fix crash on new ticket - Fix crash on user and org dialog popup from ticket - Fix missing queue mass-action buttons
-
Jared Hancock authored
This originates from an ORM issue, where the select_related in a queryset was not honored by the compiler. Therefore, the query would not include all the fields requested and would require extra trips to the database for some queries. This is especially important for unbuffered queries, such as those used in the export process, which be fetched in parallel with other queries.
-
Jared Hancock authored
Also fix SQL issue with the tables installed in the install script
-
Jared Hancock authored
This patch implements Nathan's mockups for adding sorting options to the custom queues. The sort drop-down feature was added for v1.10. This patch adds the complex sort dropdown back into the custom queue feature, but also makes the sorting options customizable.
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
This adds support for the SQL_CALC_FOUND_ROWS hint and the following FOUND_ROWS() call to fetch the total ticket count for a ticket queue without asking the database to run the same query twice. References: http://dev.mysql.com/doc/refman/5.7/en/information-functions.html#function_found-rows
-
Jared Hancock authored
-
Jared Hancock authored
And provide a foundation for sorting on other complex field types
-
Jared Hancock authored
Also, avoid setting FLAG_INHERIT_COLUMNS for queues which do not inherit from another queue.
-
Jared Hancock authored
-
Nathan Febuary authored
Adds the UI for sorting and creating custom sorting options. Custom sorting options can be used for ANY custom queue. Custom sorting has an ascending priority. Meaning the top sorted field option is sorted first.
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
* Drop per item edit and delete links * Add drop-down links for edit and delete after queue title * Fix crash on queues with keyword searches * Fix menu collapse with several top-level queues. "Search" and "New Ticket" are always shown on the nav bar * Update queue `path` on update * Include cascaded parent's criteria when displaying inherited criteria * Show inherited criteria on saved search edit dialog
-
Jared Hancock authored
This fixes a problem where viewing a queue with no defined columns would result in attempting to add columns to the queue, which would result in an incorrect SQL statement and an email sent to the administrator. This was ultimately moot because columns are not added directly to the queue anymore.
-
Nathan Febuary authored
Quick configure action menu is placed next to the title of all custom queues. HTML/CSS only needs php.
-
Jared Hancock authored
Queues can elect to use the columns from a parent. This is enforced by default for saved searches and queues not defining any columns. * Fix wrapping issue combining truncated fields with annotations * Only support criteria inheritance for queues with a parent
-
Jared Hancock authored
The lclip truncate method allows for trimming the beginnging of the text. This trimming will only work properly for left-to-right languages because it changes the CSS `direction` property. Writing a rtl language ltr will probably not be legible.
-
Jared Hancock authored
-
Nathan Febuary authored
Queue modifications remove fronted quick queue manager for admins, modifies the width of the queue dropdown and adds better nested dropdown for queues admin i.e. multi level dropdown instead of originally the file tree style. Optimizations for IE9 and up (screen shots to show IE9 sauce labs test). Additional minor design changes in the dropdown menus.
-
Jared Hancock authored
-
Jared Hancock authored
* Add relative and full formats to the filter list * All dates in queue are database-relative * Fix very odd rendering of conditions in queue table * Fix "clip" truncate mode * Re-implement background color for Priority column * Allocate no space for hidden annotations * Add checkboxes to queue preview for closer resemblance to ticket queue * Add default formats to initial date columns
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
And, fix bad width on new open queue And, fix bad criteria on install
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
This allows for less work when designing new queues. The column design—the data definition, annotations, and conditions, are saved with the column. The heading, sort order, and width are set when the column is associated with a queue. This means that changing the behavior of a particular column will mean not having to redo work for each queue that uses the column.
-