1

Hi,

When I create a new case, I'd like to be able to prepopulate the due date field. It's easy to prepopulate the title like this:

http://devserver/fogbugz/default.asp?command=new&pg=pgEditBug&sTitle=title

but how do I do the same thing for the due date field? I tried:

http://devserver/fogbugz/default.asp?command=new&pg=pgEditBug&dtDue=2012-10-12T13:00:00Z

but it didn't work. I also tried the URL-encoded version.

Thanks!

flag

1 Answer

0

Because the due date and time are rendered as separate fields, you need to populate the date and time components separately using the sDueDate and sDueTime arguments:

http://[your_fogbugz]/?command=new&pg=pgEditBug&sDueDate=2012-10-12&sDueTime=13:00

link|flag
Thanks! Is there documentation somewhere about what the names of the url parameters are? – Ian Oct 5 at 17:11
@Ian blog.fogcreek.com/a-halloween-treat – Michel de Ruiter Oct 8 at 7:00

Your Answer

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