1
vote
1answer
95 views
Can a plugin add a new chart type?
Is it possible to have a plugin add a new chart type to the case list charts? I looked through the API and didn't see anything.
Thanks,
0
votes
0answers
5 views
(Plugin) How do I read the tags of a case when it is edited?
Is there any way I can read a cases tags in a plugin when it's edited? I'm currently using IPluginBugCommit.BugCommitAfter, however it seems to only contain a list of added tags (r …
2
votes
2answers
66 views
Using BugMonkey to translate FogBugz UI text
I'm trying to translate some basic text labels (e.g. Priority, New Case, List Cases, Assigned to...) into Chinese for our testers to input bugs.
I'm using On-demand FogBugz so can …
0
votes
1answer
11 views
Example of plugin configuration
I plan to write a plugin that sends an email to a virtual user (probably "billing@example.com") whenever a case with a specific tag (probably "billable") is resolved. I am starting …
0
votes
2answers
52 views
SerializationException when trying to access CBugFieldPlugin.BugFields()
I'm getting an exception when I run this code in my plugin:
CBugFieldPlugin customFields = (CBugFieldPlugin)api.AllPlugins.PluginFromId("CustomFields@fogcreek.com");
…
0
votes
1answer
21 views
Extend security system via plugins
We'd like to use FogBugz for customer support desk automation for a big company.
They need to restrict ability to view / perform actions on cases in some areas for some user grou …
0
votes
1answer
15 views
Plugin development: Get URL parameters
Hello,
I'm developing my plugin using C#. For example the plugin has URL:
http://FB/default.asp?pg=pgPlugin&ixPlugin=21&myParam=value
I want to parse this URL and get t …
0
votes
0answers
7 views
Feature Request: IPluginBugEventAttachmentArea
It would be nice if there was an easy way in the plugin API to manipulate the display of the attachments for a bug event in the same way that you can in the header (using IPluginBu …
0
votes
1answer
25 views
How can I iterate over a set of selected cases in my own plugin?
I am trying to write a plugin that will format cases in a way that will print out nicely on index cards, so we can more easily tie together our paper/card Scrum system with a maste …
0
votes
1answer
19 views
How can I make my kiwi remember what zoo it belongs to?
More precisely, I'm talking about the editable tables example described in this wiki page.
I ran into a problem when while working on a plugin which uses some of the same compone …
4
votes
2answers
71 views
Prevent a case from being committed in a plugin
Can a plugin prevent a case from being committed, for example to prevent invalid data or satisfaction of some requirements (such as a non-empty bugevent)?
Case FC2126768
0
votes
0answers
31 views
Charts/graphs in plugins
Hi there,
We're developing some reporting-type plugins specific to the data we want to see, but were wondering how to go about getting the existing chart functionality into our pa …
1
vote
0answers
19 views
How do I run SQL subqueries using the Fogbugz developer APIs
Hi there - I'm building a very simple (!) plugin that will provide some additional features around parent/child cases:
Add a column to the filter view to show Active/Resolved/Clo …
0
votes
1answer
99 views
How can I run my plugin in “full trust mode” to get around AppDomain limitations?
I'm developing a plugin (not for use on On Demand) which needs to do some stuff which the appdomain won't allow. How can I get around this?
0
votes
0answers
28 views
Create plugin to add fields to Milestones
I'd like to add a new field to milestones, to capture a "load factor" for a given milestone (milestones are being used to represent iterations in our process). I want to use this n …