Recently Viewed...
To help you navigate to pages you most recently visited, select from the links below.
Product Forums
Sharepoint Forums
Newsletter
Dynamic Forms Demonstrations
Page Tags
DNN Modules
SnowCovered Top Sellers

'Relationship Building' and 'Communication' are two essential nuts and bolts for a business to prosper. This module allows you to bridge both of these and easily generate continuous awareness of your web site, products and services. Your prospects and customers will greatly appreciate this featur

A 16-in-1 dnn module.Powerful yet easy to use. Capable of producing a multitude of functions including:Image rotator/Numeric rotator/ Mp3 player/Wmv player/ Flash video player /YouTube video player/Multimedia player / Text-to-speech podcast / Flipping book player/Banner topic player/Silverlight albu

Version 5 of the perennial best-selling tool for creating data-based solutions in DNN without custom programming. This version focuses on greater flexibility, expandability, and ease-of-use.

Ultra Video Gallery is a brother product of Ultra Media Gallery, UVG allows you to add videos in various format and automatically convert them to flv format, you also can add videos from embed code and play them in our integrated flash video player.

The award winning discussion forum and community solution for DotNetNuke is now even better. When you need to build the best community site, you need the best module, Active Forums!

Gloss is the first ALL COLORS! skin, featuring a powerful XML-based flash and being 100% W3C CSS XHMTL1.0 compliant. Tune it yourself on the fly, changing colors, backgrounds, containers, text color and size, width and more! Brilliant!Available for DNN4 and DNN5

Powerful, Ajax Enabled, Easy to Use. Document Management has never been better. Open-DocumentLibrary allows DotNetNuke users to share and manage documents in a flexible, intelligent way, offering granular control over Folder and Document access.

ALL NEW ! - Minimalist includes skin packs in 12 great colors. Each color has Flat, Gradient and Glass versions. Feature rich XML Flash header, perfect for just about any purpose. 9 Different menu options in each skin pack; 3 horizontal menus, 3 vertical menus and 3 all-new Twin level menus . . .

Live Content uses Web 2.0 approach to provide a Rich User Interface and streamlines content presentation by overlaying content on current page. Overlay images, videos, audio, text/html content, flash, dotnetnuke modules, and external content. Experience the demo...

Ultra Media Gallery is the most popular photo gallery and media gallery solution for DotNetNuke, UMG offers 10 different flash player to browse your gallery with completely different user interface experience.

    |   Register   |   Thursday, January 08, 2009   
Data Springs Product Forums...
Subject: Feature request
Prev Next
You are not authorized to post a reply.

Author Messages
Bamse
Posts:71
river guide
river guide

04/22/2008 4:01 AM  

In DR and DF, it would be good to have a possibility to create answers from DNN built in lists to populate answers in a form

We use a Stored procedure and executes this with a parameter for the list different list name, but it should be easy to have this as a fixed option when creating a answer option. Like a drop down to select the name of the list, and then it would populate answers  using the built in sort order in DNN lists.

Can share the SP we use if anyone is interested.

Chad
Posts:2387
river guide
river guide

04/23/2008 10:19 AM  
Hi. Please feel free to post the stored procedure, I am sure any users making use of this feature would appreciate it. We will review this in the future, but again since its possible but just not directly in the interface I am not sure it will have the highest priority over other enhancement requests. Would be nice though to have 'Enter Options', 'SQL', and then another option for 'List' though where you can select the list its tied too. Thanks for the feedback.

-Chad

Bamse
Posts:71
river guide
river guide

04/23/2008 10:38 AM  

Sure, here it is. test before you use it...

 

Create SP:

IF  EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[GetAnswersFromList]') AND type in (N'P', N'PC'))
DROP PROCEDURE [dbo].[GetAnswersFromList]
GO
CREATE PROCEDURE GetAnswersFromList
(
  @ListName nvarchar(500)
)
AS
BEGIN
 select
  l.[Text] as QuestionOption,
  l.[Text] as QuestionOptionValue
 from
  Lists AS l (NOLOCK)
 where
  l.ListName = @ListName
 ORDER BY
  l.SortOrder ASC
END


Usage:
EXEC GetAnswersFromList @ListName = 'LISTNAME'

You are not authorized to post a reply.



ActiveForums 3.7

Copyright 2005 - 2009 by Data Springs, Inc.
Terms Of Use | Privacy Statement