Prepopulating New Case Page - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com 2013-05-18T06:33:14Z http://fogbugz.stackexchange.com/feeds/question/10844 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://fogbugz.stackexchange.com/questions/10844/prepopulating-new-case-page Prepopulating New Case Page Ian 2012-10-05T01:02:59Z 2012-10-08T06:59:02Z <p>Hi,</p> <p>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:</p> <p><a href="http://devserver/fogbugz/default.asp?command=new&amp;pg=pgEditBug&amp;sTitle=title" rel="nofollow">http://devserver/fogbugz/default.asp?command=new&amp;pg=pgEditBug&amp;sTitle=title</a></p> <p>but how do I do the same thing for the due date field? I tried:</p> <p><a href="http://devserver/fogbugz/default.asp?command=new&amp;pg=pgEditBug&amp;dtDue=2012-10-12T13:00:00Z" rel="nofollow">http://devserver/fogbugz/default.asp?command=new&amp;pg=pgEditBug&amp;dtDue=2012-10-12T13:00:00Z</a></p> <p>but it didn't work. I also tried the URL-encoded version.</p> <p>Thanks!</p> http://fogbugz.stackexchange.com/questions/10844/prepopulating-new-case-page/10845#10845 Answer by db for Prepopulating New Case Page db 2012-10-05T13:12:41Z 2012-10-08T06:59:02Z <p>Because the due date and time are rendered as separate fields, you need to populate the date and time components separately using the <code>sDueDate</code> and <code>sDueTime</code> arguments:</p> <p><code>http://[your_fogbugz]/?command=new&amp;pg=pgEditBug&amp;sDueDate=2012-10-12&amp;sDueTime=13:00</code></p>