Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsFeedbackFeedbackfixes to Feedback_03.02.01fixes to Feedback_03.02.01
Previous
 
Next
New Post
2/15/2007 3:33 PM
 
I would like to provide some fixes to Feedback_03.02.01
 
Bug 1. Feedback Comments categories do not work.
 
Fix.
Open: ViewComments.ascx.vb
Find: Note: Is located in Sub BindData()
If Not Settings("Category") Is Nothing Then
                               Category = CType(Settings("Category"), Integer)
                        End If
 
Change to: Note: change ‘Category’ to lowercase ‘category’.
 
If Not Settings("category") Is Nothing Then
                            Category = CType(Settings("category"), Integer)
                        End If
Bug 2. Feedback Comments settings Category does not populate.
 
Open: CommentSettings.ascx.vb
 
Find:
 
Public Overrides Sub LoadSettings()
Try
If (Page.IsPostBack = False) Then
'bind the categories from the Lists table
Dim oLists As New Lists.ListController
Dim aList As Lists.ListEntryInfoCollection = oLists.GetListEntryInfoCollection("Feedback_Categories")
Me.cboCategory.DataSource = aList
Me.cboCategory.DataTextField = "Text"
Me.cboCategory.DataValueField = "Value"
Me.cboCategory.DataBind()
Me.cboCategory.Items.Insert(0, New System.Web.UI.WebControls.ListItem("None Selected", "0"))
End If
 
Catch exc As Exception    'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
 
Add:
 
Me.cboCategory.SelectedIndex = Me.cboCategory.Items.IndexOf(Me.cboCategory.Items.FindByValue(CType(ModuleSettings("category"), String)))
 
Example:
 
Public Overrides Sub LoadSettings()
Try
If (Page.IsPostBack = False) Then
'bind the categories from the Lists table
Dim oLists As New Lists.ListController
Dim aList As Lists.ListEntryInfoCollection = oLists.GetListEntryInfoCollection("Feedback_Categories")
Me.cboCategory.DataSource = aList
Me.cboCategory.DataTextField = "Text"
Me.cboCategory.DataValueField = "Value"
Me.cboCategory.DataBind()
Me.cboCategory.Items.Insert(0, New System.Web.UI.WebControls.ListItem("None Selected", "0"))
 
Me.cboCategory.SelectedIndex = Me.cboCategory.Items.IndexOf(Me.cboCategory.Items.FindByValue(CType(ModuleSettings("category"), String)))
End If
 
Catch exc As Exception    'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
 
 
 
Recompile.. walaa…
To download compiled fixes go to http://bruce.myphotos.cc/03.02.01fixes.zip unzip the two dll files in your dnn bin directory.
 
 
 
 
New Post
2/15/2007 3:35 PM
 

Please note that version 4.04.01 of the feedback module is going to be released very shortly which has changed the way categories are handled and as such does not have the bugs mentioned above.

Sanjay


AcuitiDP - Oracle Data Provider for DotNetNuke
 
New Post
2/18/2007 5:41 PM
 
Sanjay,

I noticed a entry in the project blog that said it would be announced at some point this week (with regards to release date). Did I miss it or are we waiting patiently?

Kind regards

Pete

Aarrgghhh! User Error DNN Version: 4.4/4.5
Websites: taxinumber.com/taxi-today.com
Like DNN? Yes! Very much, congratulations!
Poor eyesight? Yes! Thankyou very much!
 
New Post
2/18/2007 11:41 PM
 

Pete - I'm waiting for the same from the core. Let me find out from my liason and see what's going on...

Sanjay


AcuitiDP - Oracle Data Provider for DotNetNuke
 
New Post
2/25/2007 9:36 AM
 

Sanjay,

Any news from the core?

Cheers

Pete


Aarrgghhh! User Error DNN Version: 4.4/4.5
Websites: taxinumber.com/taxi-today.com
Like DNN? Yes! Very much, congratulations!
Poor eyesight? Yes! Thankyou very much!
 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsFeedbackFeedbackfixes to Feedback_03.02.01fixes to Feedback_03.02.01


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out