The radio button for a filter action is disabled if that filter action has no associated records. However, the label retains the normal font styling, so it's unclear that the action is not available.
Add the "muted" class to the label for a filter action (and still disable its radio button) if it has no records associated with it. [YOCTO #8738] Signed-off-by: Elliot Smith <[email protected]> --- bitbake/lib/toaster/toastergui/static/js/table.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bitbake/lib/toaster/toastergui/static/js/table.js b/bitbake/lib/toaster/toastergui/static/js/table.js index a253917..9384386 100644 --- a/bitbake/lib/toaster/toastergui/static/js/table.js +++ b/bitbake/lib/toaster/toastergui/static/js/table.js @@ -399,18 +399,21 @@ function tableInit(ctx){ * show when selected */ function createActionRadio(filterName, filterActionData) { + var hasNoRecords = (Number(filterActionData.count) == 0); + var actionStr = '<div class="radio">' + '<input type="radio" name="filter"' + ' value="' + filterName + '"'; - if (Number(filterActionData.count) == 0) { + if (hasNoRecords) { actionStr += ' disabled="disabled"'; } actionStr += ' id="' + filterName + '">' + '<input type="hidden" name="filter_value" value="on"' + ' data-value-for="' + filterName + '">' + - '<label class="filter-title"' + + '<label class="filter-title' + + (hasNoRecords ? ' muted' : '') + '"' + ' for="' + filterName + '">' + filterActionData.title + ' (' + filterActionData.count + ')' + -- Elliot Smith Software Engineer Intel OTC --------------------------------------------------------------------- Intel Corporation (UK) Limited Registered No. 1134945 (England) Registered Office: Pipers Way, Swindon SN3 1RJ VAT No: 860 2173 47 This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies. -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
