Form Wizard Pro issues

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
4/21/2010 4:53:29 PM
Gravatar
Total Posts 39

Form Wizard Pro issues

Windows 2008
SQL Server 2008
mojoPortal 2.3.4.1
Form Wizard Pro 0.0.1.6

For some reason, when using the "View submissions grid" a couple of my column headers display placeholder values, such as "q20" and "q32" instead of the actual question text. Oddly, this problem doesn't occur with the CSV export or the Browse submissions screen.

Minor UI feedback: the required asterisk for multiple choice fields displays after the choices. I think it would look better displayed after the question text.
 

4/21/2010 5:15:47 PM
Gravatar
Total Posts 39

Re: Form Wizard Pro issues

Also, the Date Picker question type allows non-date values, but doesn't allow a regular expression to be supplied for validation.

4/22/2010 6:23:56 AM
Gravatar
Total Posts 18439

Re: Form Wizard Pro issues

Hi,

About the view submissions grid vs the csv export. In both cases we are manufacturing a DataTable object in code, in one case we then export tha table as csv, in the other we data bind to it, browsing submissions one at a time does not involve a DataTable. If you notice in the csv export the column names are actually q1, q2, q3... all we have done is write the question text into the first row of the data. On the submissions grid we try to replace the column names in the DataTable with the question text, otherwise you would only see them as the first row on the first page of results. However, there are limits to what you can use for a column name in a DataTable object, it will throw errors if you try to use something invalid or a duplicate of another column name. In that case we just swallow the error and leave the column name as it was q[x]. There is nothing that can be done to solve this.

I will look into adding the regex support for date questions in a future release.

Best,

Joe

4/22/2010 6:02:24 PM
Gravatar
Total Posts 39

Re: Form Wizard Pro issues

Thanks for the response. It was indeed a case of duplicate Question Text causing the issue.

You must sign in to post in the forums. This thread is closed to new posts.