Here was my problem:
- From a screen which shows the list of Ideas, the user could click on a link to add feedback. This opens a popu window with the Feedback Entry screen
- In the feedback entry screen, the title of the idea needs to be prepopulated
Here was my solutions:
- Use SharePoint Data View control – DataView DropDownList. Configuire it so that it is connected to the regular Feedback form Idea Title field
- Pass the ID of the Idea through a query string variable. Collect it and store it in a parameter
- User the selectedvalue = “{$IdeaID}” to make the drop down box show the Idea title passed on to it
It worked like a charm. Contact me if you need more details or if you know of a better way of doing this