This is a migrated thread and some comments may be shown as answers.

Sorting found sessions by Background Color/ui-color

0 Answers 137 Views
Fiddler Classic
This is a migrated thread and some comments may be shown as answers.
Hugh
Top achievements
Rank 1
Hugh asked on 19 May 2016, 07:30 AM

Ello, I'm a newbie at Fiddler and have been using it for sometime and loving it!

I've been trying to figure out a way to sort captured sessions that
I find in the "find sessions" window by it's color as it's a chore scrolling
through a lot of sessions that range in the hundreds and all.

I tried creating a custom column using the "custom column creator" but
don't know of a way to make it work with ui-backcolors or whatnot.

Then I tried using customRules to create a custom column in
with the FiddlerScript but...I'm really new to .NET and even after
some research, still haven't figured out a way to do it.

Here's my code that I modify from the sample codes used for
making custom columns.

public static BindUIColumn("BackColor")
           function CalcMethodCol(oS: Session) {
                  if (null != oS["ui-backcolor"]) return oS["ui-backcolor"]; else return String.Empty; 
        }

 

For other functions when it comes to sorting, I can likely find a way to do it (sorting urls and all) but for background colors...
This is something I have no idea what to do.

Can anyone kindly help?
This can be very useful when it comes to sorting any found sessions
without the need of scrolling any list big or small. That and other stuff!

No answers yet. Maybe you can help?

Tags
Fiddler Classic
Asked by
Hugh
Top achievements
Rank 1
Share this question
or