1

I successfully used the "Data-From Text" function in Excel to create a refreshable view of FB cases using this url as source:

https://myfbod.fogbugz.com/default.asp?pg=pgPluginBinary&ixPlugin=1

However, this method just picks up the "current filter" so I was wondering if there is a way to get the csv exporter plugin to use a specific filter?

I tried appending &ixFilter=3 but it didn't work

flag

1 Answer

1

As of version 1.2.1, you can append

&P[ixPlugin]_ixFilter=[ixFilter]

to the URL, where ixPlugin is the plugin id (you can get it from the URL that it takes you to when you export a filter), and ixFilter is the filter id (you can get this from the URL of a filter). For example:

http://my.fogbugz.com/default.asp?pg=pgPluginBinary&ixPlugin=1&P1_ixFilter=4



You can also append a search string in version <1.2.1:

&P[ixPlugin]_sSearch=[search]

For example

http://my.fogbugz.com/default.asp?pg=pgPluginBinary&ixPlugin=1&P1_sSearch=assignedto%3a%22me%22

link|flag
Can't get this to work... After creating a url that looks correct I get: An exception has occurred. FogCreek.FogBugz.Exception.FogBugzSecurityException: The user does not have permission to read this object. at FogCreek.FogBugz.CProxyReadOnlyBase.AssertReadable() at FogCreek.FogBugz.Plugins.Entity.CGridColumn.get_ColumnType() at FogCreek.Plugins.FilterExport.FilterExport.GetColumns(Int32 ixFilter) at FogCreek.Plugins.FilterExport.FilterExport.BinaryPageDisplay() My base url looks like: .../default.asp?pg=pgPluginBinary&ixPlugin=1 (works) but appending "&P1_ixFilter=XX" => error. – Per B Sep 28 2009 at 19:19
1 
Are you sure that filter is visible to you? I only see that error if I type in the number for another user's filter that isn't shared. – David Fullerton Sep 29 2009 at 13:56

Your Answer

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