How do I create a new case that looks just like an existing one (all the fields the same) so I can quickly use a case as a template for a new one?
|
44
6
|
||||
|
|
14
|
Update: I'm working on a port of Rich's bookmarklet generator script. Up-vote this question if you'd like something like it. There isn't a built-in way to clone a case to a new one, but there are several options:
See also this blog post about creating cases with field values pre-filled: http://blog.fogcreek.com/a-halloween-treat/ |
|||||||||||||||||
|
|
2
|
I wrote an app which allows you to do this (source available). http://www.fogcreek.com/fogbugz/blog/post/CaseCloner-for-batch-creating-cases-in-FogBugz.aspx Just remember, the URL field it wants is the actual url to the api, so something like |
|||
|
|
|
2
|
I've just converted this into a 'customization' (Settings > Customizations) so it will add a link to the page to do it rather than as a bookmarklet.
I've also added a custom field to this using the following to get the field, and adding the string to the url:
|
|||
|
|
0
|
Is it possible to have that bookmarklet also copy release notes? |
||||||
|
|
0
|
javascript:a=function%20(){%20open('http://[your fogbugz url]/default.asp?command=new&pg=pgEditBug&ixCategory='+goBug.ixCategory+'&ixProject='+goBug.ixProject+'&ixArea='+goBug.ixArea+'&ixPersonAssignedTo='+goBug.ixPersonAssignedTo+'&sCustomerEmail='%20+%20escape(goBug.sCustomerEmail)%20+%20'&ixPriority='+goBug.ixPriority+'&sTitle='%20+%20escape(goBug.sTitle)%20+%20'&sTags='%20+%20escape(goBug.ListTagsAsArray())%20+%20'&sEvent=See%20Case%20'%20+%20goBug.ixBug%20+%20escape('\r\n\r\n')%20+%20%20escape(document.getSelection())%20+%20'&b=c');%20return;};a(); any suggestions on how to make this copy custom fields? |
|||||||||
|