I'm extending the MemberGroups admin as I need to add some extra properties such as main group contact email address.
I've already added a custom usercontrol to replace the existing functionality for the EditMemberGroup usercontrol and updated the treeHandlerType in the umbracoAppTree table.
My dilemma is where should I store the extra properties that I will add to the member group, it would be nice to add the properties to the existing umbraco tables.
I can see that the Member Groups are stored in the umbracoNode tables, can I then use something along the lines of
[code]Dim doc As umbraco.cms.businesslogic.web.Document = New umbraco.cms.businesslogic.web.Document(_memberGroup.Id)[/code]
to add a new property dynamically, if so how can I do this ?
Extending MemberGroups
Hi,
I'm extending the MemberGroups admin as I need to add some extra properties such as main group contact email address.
I've already added a custom usercontrol to replace the existing functionality for the EditMemberGroup usercontrol and updated the treeHandlerType in the umbracoAppTree table.
My dilemma is where should I store the extra properties that I will add to the member group, it would be nice to add the properties to the existing umbraco tables.
I can see that the Member Groups are stored in the umbracoNode tables, can I then use something along the lines of
[code]Dim doc As umbraco.cms.businesslogic.web.Document = New umbraco.cms.businesslogic.web.Document(_memberGroup.Id)[/code]
to add a new property dynamically, if so how can I do this ?
Thanks,
Mike
is working on a reply...