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

HomeHomeDevelopment and...Development and...Building ExtensionsBuilding ExtensionsModulesModulesProgramatically creating Tab with ModulesProgramatically creating Tab with Modules
Previous
 
Next
New Post
12/9/2010 2:21 PM
 
Hi 
I have a module working under DNN 5.2, when I upgraded to 5.6 the module stopped working. This is not so strange, there are a lot of changes in the DNN core since versjon 5.2

My problem is this.

When I run this code: 


  TabInfo newTab = controller.GetTab(oldTabId, portalID, true);
TabInfo templateTab = controller.GetTab(newTabId, portalID, true);

   ModuleController c = new ModuleController();
c.CopyModules(templateTab, newTab, false);

....

I get this error:
Violation of UNIQUE KEY constraint 'IX_TabModules_UniqueId'. Cannot insert duplicate key in object 'dbo.TabModules'. The statement has been terminated.


I do not see where I can set this ID myself, since this error is inside CopyModules.

Best regards
Vidar
 
New Post
12/10/2010 4:14 AM
 
Vidar

There is new field in the table Tabs UniqueId and you have to fill it with different Guid when make a copy of the page or when create new one. So your code should be like this:

TabInfo newTab = controller.GetTab(oldTabId, portalID, true);
newTab.UniqueId = System.Guid.NewGuid();
...

Sergey
 
New Post
12/10/2010 4:46 AM
 
Thanks Sergey I will try this. Best regards Vidar
 
New Post
1/6/2011 10:30 AM
 
I was wondering did you also have any issues in copying the content of the HTML module in 5.6? We do a page copy and the data looks like we are able to copy and we set it to Direct Publish but when looking at it in the database the new record is set to false. We have to save it again for it to publish.
 
New Post
9/5/2011 9:55 PM
 
Hi Sergey,

I can't see how setting the UniqueID of the Tab addresses this particular error? The code is running into the contraint on the TabModules table, not the Tabs table - each tabmodule entry has its own UniqueID - shouldn't the CopyModules function handle the creation of new GUIDs in this table...?

I have tried making a copy of the TabInfo, changing the UniqueID as suggested, but still the error occurs.

Has anyone got this function working?

Cheers,

Jonathan
 
Previous
 
Next
HomeHomeDevelopment and...Development and...Building ExtensionsBuilding ExtensionsModulesModulesProgramatically creating Tab with ModulesProgramatically creating Tab with Modules


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