vote up 0 vote down star

Scenario: There is this online questionaire that will be filled in by various departments in a company. The questions are data driven and are different for each department. But for some of the questions, the way the input is taken is also different; for some departments the same question is asked to be replied to, by selecting values from a drop down, for the others its free text entry; again, for some departments you change the caption against the area for entry. This caption is not part of the question. its also not coming from the database as of now and Id rather not put it all in the database and increase the joins for each select. Out of the twenty odd questions which have such captions, there are just 3 such captions which change.

for eg.

Department A.)

Q.) How would you like to get here? {caption:"Enter your prefered transport method"} [Free Text Box]

Department B.)

Q.) How would you like to get here? {caption:"Select option"} [Drop Down]

What would be the best way to design and code such web based questionairre of the ways below?

  • Implement it using if-else conditions for each department and show and hide input controls as per department
  • Abstract all common inputs into a parent class and have multiple child classes for each department which contain their own specific behavior for data input

Any other better way?

Thanks for your time. :)

flag

78% accept rate
I would think the if/else statements, but I don't know a lot about web programming. Is there any particular reason some departments get to answer with free text, and others only get an option menu? Is there some way you could move everyone to one or the other, so that it's not different by department? – Jared Harley Jun 11 at 6:48
Hi Jared, what I gave was an example question. For some depts there are no fixed choices and the user can enter whatever he needs to. For others they have restricted choices and the user must only select a predefined option. I cant change the way the answers are taken in :( – daemonkid Jun 11 at 9:02
I thought of using if-else too. But I see that theres goin to be more permutations and combinations happening in the near future. So wanted to implement a design which would make the code more readable and easier to maintain. – daemonkid Jun 11 at 10:01

1 Answer

vote up 0 vote down check

I would recommend using if/else statements to show and hide the various questions.

The reason why I say if/else instead of sub-classing is that you'll come across a case where a question which used to be "common" to all Departments becomes specific to a few, and you'll have to refactor that question to the sub-classes and delete it where it's not applicable. The if/else code may get tedious, but not more tedious than the refactor I mention above.

In addition, I would also urge you to strongly consider normalizing the questions of your survey. In other words, in the example you provided above, I would make the free text and option two different questions. This doesn't change how the answers are input, it just changes how you consider the different questions.

The reason why I'm saying this is that any analysis you will be doing on the answers is dependent on comparing apples to apples -- when you restrict or free the list of available choices, you're comparing apples to oranges.

link|flag
thanks for the answer. About the database structure. We decided not to normalize it to that level because there are already too many tables in join queries for one of the read only pages which is used heavily by upto 500 concurrent users during peak time,and this being an internal app with not so much spending done on hardware, we decided to keep the table count to as less as we could. I see your point abt the analysis part though. However those fields that are accepted in free text/dropdown are not included for the analysis. – daemonkid Jun 25 at 16:15

Your Answer

Get an OpenID
or

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