Poll/Questionnaire application Options
martin
Posted: Wednesday, January 31, 2007 8:08:08 AM
Rank: Devotee

Joined: 7/24/2006
Posts: 249
Cool ! It looks really good.
I agree it would have been nice to have umbraco administration, but I was looking for super simple admin as it will be updated every week.

btw: If you do not have Visual Studio you can use the free WebMatrix for these little programs : http://www.asp.net/webmatrix/


tkahn
Posted: Wednesday, April 30, 2008 3:01:49 PM

Rank: Fanatic

Joined: 11/24/2006
Posts: 322
Location: Stockholm, Sweden


I downloaded these files, but I'm not sure I have the luxury of a separate database for storing poll data(?) Also, it seems like the creation of questions and answers are not integrated with the Umbraco admin?

I'm really hounded by my client to get a poll function working on one of my Umbraco sites. Is this the best and most integrated solution for Umbraco so far or is there a better/simpler solution?

/Thomas

Web Developer at Kärnhuset - http://www.karnhuset.net - Stockholm, Sweden
bootnumlock
Posted: Thursday, May 01, 2008 7:24:31 AM

Rank: Fanatic

Joined: 10/9/2006
Posts: 355
hey tkahn...

have you checked out this post?
http://forum.umbraco.org/yaf_postst4640_Voting-Gallery.aspx

doug references Tim's poll package with screeencasts.

bootnumlock - aka bob baty-barr [http://www.baty-barr.com]
Level 1 Certified!
tkahn
Posted: Tuesday, May 06, 2008 6:25:59 PM

Rank: Fanatic

Joined: 11/24/2006
Posts: 322
Location: Stockholm, Sweden
bootnumlock wrote:
hey tkahn...

have you checked out this post?
http://forum.umbraco.org/yaf_postst4640_Voting-Gallery.aspx

doug references Tim's poll package with screeencasts.


Hi!

The problem is that the links to Tim's poll don't work anymore. I only get a startpage with no links to move on(?) So I'm affraid I haven't had the chance to check out Tim's poll yet. :-(

/Thomas

Web Developer at Kärnhuset - http://www.karnhuset.net - Stockholm, Sweden
Dirk
Posted: Tuesday, May 06, 2008 9:33:00 PM

Rank: Fanatic

Joined: 9/27/2007
Posts: 498
Location: Belgium
Hi Thomas,

Go to his blogsite nibble and post some comment (You may want to congratulate him on his Level 2 certification (Another certified Belgian). He's checking the comments regularly, and I'm sure he'll be more than happy to share his wonderful package.

Greetz,
/Dirk


level 1 certified - umbraco blog at netaddicts.be
tkahn
Posted: Wednesday, May 07, 2008 8:56:37 AM

Rank: Fanatic

Joined: 11/24/2006
Posts: 322
Location: Stockholm, Sweden
Thanks Dirk!
I've posted a comment on his blog regarding the AJAX Poll package. :-)

/Thomas

Web Developer at Kärnhuset - http://www.karnhuset.net - Stockholm, Sweden
Petr Snobelt
Posted: Wednesday, May 07, 2008 3:57:27 PM
Rank: Aficionado

Joined: 10/2/2007
Posts: 149
Location: Czech Republic
Hi, i think correct link can be found on his blog, I found http://www.nibble.be/Packages/Ajax_Star_Rating_1.0RC1.zip
Try it
Dirk
Posted: Wednesday, May 07, 2008 4:03:34 PM

Rank: Fanatic

Joined: 9/27/2007
Posts: 498
Location: Belgium
Nope Petr, that's another great package by Tim. Star rating package is for ... well... star rating whereas Thomas is looking for a poll application, where admins can create questions/answer combinations in content section and where users may choose an option in the frontend.

Greetz,
/Dirk


level 1 certified - umbraco blog at netaddicts.be
tim
Posted: Wednesday, May 07, 2008 5:14:26 PM

Rank: Addict

Joined: 2/19/2007
Posts: 638
Location: Belgium
Hey Guys,

I'll upload the package and source for the poll later today.

Umbraco tips and tricks: http://www.nibble.be - umbraco mvp 08/09 - certified level 1 & 2 professional
tim
Posted: Wednesday, May 07, 2008 8:31:37 PM

Rank: Addict

Joined: 2/19/2007
Posts: 638
Location: Belgium
You can download the package here: http://www.nibble.be/?page_id=4, if you want the source send me a mail : info(at)nibble(dot)be

Umbraco tips and tricks: http://www.nibble.be - umbraco mvp 08/09 - certified level 1 & 2 professional
tkahn
Posted: Tuesday, May 13, 2008 12:10:13 PM

Rank: Fanatic

Joined: 11/24/2006
Posts: 322
Location: Stockholm, Sweden
I have Tim's AJAX Poll package installed and working!

There is one small detail that I need to fix before I can publish it. In the two screencasts you can see how the pollNodeId is added using a dynamic parameter that is a Content Picker. In the template the macro is added like this:

Code:

<?ASPNET_FORM>
<?UMBRACO_MACRO macroAlias="Poll" pollNodeId="[#currentQuestion]"></?UMBRACO_MACRO>
</?ASPNET_FORM>


The problem in my case is that this only works on the page that has the parameter "currentQuestion". In my case I want the poll displayed on all the pages in my site and thus I would need to make the paramter "currentQuestion" recursive so that all pages will look further up in the hierarchy for the NodeId of the current question.

How do I fix this?

Web Developer at Kärnhuset - http://www.karnhuset.net - Stockholm, Sweden
tkahn
Posted: Friday, May 16, 2008 7:58:22 PM

Rank: Fanatic

Joined: 11/24/2006
Posts: 322
Location: Stockholm, Sweden
Hi again!

I just want to make sure before I dig into the component code: Is there any easy way in Umbraco to make a macro parameter for a .NET macro recursive? I tried the [$parameter] syntax but it doesn't work in Umbraco 3.0.3 (at least as far as I can see).

If not, I will atempt to re-code of the component and try to fetch the value recursivelly from withing the .NET code.

/Thomas K

Web Developer at Kärnhuset - http://www.karnhuset.net - Stockholm, Sweden
tim
Posted: Saturday, May 17, 2008 8:12:27 PM

Rank: Addict

Joined: 2/19/2007
Posts: 638
Location: Belgium
Making it recursice shoudn't be that hard, a little loop that will look for the property in the document's parents.

Umbraco tips and tricks: http://www.nibble.be - umbraco mvp 08/09 - certified level 1 & 2 professional
tkahn
Posted: Saturday, May 24, 2008 8:43:30 PM

Rank: Fanatic

Joined: 11/24/2006
Posts: 322
Location: Stockholm, Sweden
I've got it sorted. :-)

Actually there was a C# function for finding a property recursivelly posted here on the forum. So I took it and incorporated it in Tim's Poll add-on and it worked like a charm. :-)

Thanks Tim for sharing the Poll code and Andrew Cullen for posting the recursive function!

Web Developer at Kärnhuset - http://www.karnhuset.net - Stockholm, Sweden
tim
Posted: Sunday, May 25, 2008 4:40:48 PM

Rank: Addict

Joined: 2/19/2007
Posts: 638
Location: Belgium
No problem, glad it was helpfull to you !

Umbraco tips and tricks: http://www.nibble.be - umbraco mvp 08/09 - certified level 1 & 2 professional
Users browsing this topic
Guest


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.