Survey - length of radio button options

If you have questions about using mojoPortal, you can post them here.

You may want to first review our site administration documentation to see if your question is answered there.

This thread is closed to new posts. You must sign in to post in the forums.
4/3/2013 5:50:02 AM
Gravatar
Total Posts 118

Survey - length of radio button options

Hi, I'm using the survey feature. Is there a way to increase the amount of characters that a radio button uses? 

I think it's limited to 100 characters at the moment and I would like to give users a longer option. 

4/3/2013 9:32:10 AM
Gravatar
Total Posts 18439

Re: Survey - length of radio button options

Hi,

The database field actually supports up to 255 chars so this can be solved.

Edit the file /Survey/SurveyQuestionEdit.aspx

look for this:

 <asp:TextBox ID="txtNewOption" runat="server" Columns="39" MaxLength="100"></asp:TextBox>

change it to this:

 <asp:TextBox ID="txtNewOption" runat="server" Columns="39" MaxLength="255"></asp:TextBox>

I will do the same in my copy so it will be fixed in the next release.

Hope that helps,

Joe

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