Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Add parameters to custom report

reporting

I found your sample Project Time Report has parameter fields.

Do you have any code on how to add a date range controls?

netguy
· 1
netguy
Replies (3)
helpful
0
not helpful

Simply add 2 text boxes, one for from and one for to and use them in the code of the custom control. Use jQuery to make them date pickers:

$(document).ready(function(){ $('#<%=txtStartDate.ClientID %>').datepicker({ yearRange: '1990:2020', showOtherMonths: true, dateFormat: 'd M,yy', changeMonth: true, changeYear: true }); });


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Would you mind giving out the source code of the Project Time Report with parameters implemented? or any reports with datepicker parameter will help.

Many thanks.


netguy
· 1
netguy
helpful
0
not helpful

Please send an email to support at countersoft dot com


Mark Wing
· 9108
Mark Wing