23

2

Quoted directly from user Marc Moroz in this thread.

I'd like to be able to customize the default "My Cases" filter. Just about everyone I know has made their own "My Cases" filter so they can display the filter the way they like

Fog Creek Case FC487326

flag

3 Answers

0

We have a case open to consider this feature for a future release. Please up-vote this question (not this answer) to show your support for adding this feature.

link|flag
1

I have created a custom Bugmonkey script that enables users to do this. Technically it doesn't change the default "My Cases" filter, instead it uses smoke and mirrors so that it appears it does to the user.

Users create their own custom filter called "My Cases" as per usual. This normally appears down under the "My Filters" area within filter context menu. The Bugmonkey script detects that, moves that filter up where the default "My Cases" filter belongs. It then hides the default "My Cases" filter.

This actually ends up quite seamless to the user and if they delete their own filter then the default comes back.

name:          Enable Custom My Cases filter
description:   Works around the non-editable default My Cases filter available for everybody
author:        Mark Nichols
version:       1.0.0.0

js:

    var defaultFilter = $("#filterPopup a[href^='default.asp?pg=pgList&pre=preSaveFilterEZ&ixPersonAssignedTo=']");
    var customFilter =  $("#filterPopup a:contains(My Cases)").not(defaultFilter);
    if (customFilter.length > 0)
    {
        customFilter.insertAfter(defaultFilter);
        defaultFilter.css("display", "none");
    }
link|flag
0

I don't see a way to up-vote this: I'd like to be able to customize the default "My Cases" filter. Just about everyone I know has made their own "My Cases" filter so they can display the filter the way they like"

link|flag
Do you see the up arrow (triangle) above the number of votes (currently 14)? Click it to vote up the question! – Michel de Ruiter Oct 4 at 19:45

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.