Unsupported Feature - Third-party integration
Last Post 24 May 2010 07:22 AM by fatgeorge. 60 Replies.
Printer Friendly
Sort:
PrevPrev NextNext
You are not authorized to post a reply.
Page 1 of 41234 > >>
Author Messages
Will MorgenweckUser is Offline
Forum Admin
Active Modules Staff
Will Morgenweck

Post Count:6271





--
18 Mar 2009 01:59 PM  
We have added a preview of an option for third-party integration.  I have to stand firm on the fact that this is unsupported for the time being.  We are not ready to start tracking down issues that may or may not be related to a third-party.  If you questions, comments or feedback, please post in the Custom Views/Templates forum. 

PLEASE, if you do have a support question about anything for Active Social, we absolutely need to know if you are using this capability.  Our focus needs to remain on the roadmap and issues directly related to Active Social.  For example, if you run into an issue with the ProfileView and are using this control on a tab the first thing we will ask is for you to remove it.










Will Morgenweck
Active Modules
Tags: News, Controls, Skin Objects, Templates
Will MorgenweckUser is Offline
Forum Admin
Active Modules Staff
Will Morgenweck

Post Count:6271





--
18 Mar 2009 02:01 PM  
The following code will allow you to load a DNN module from a specific page into a custom view or any other Active Social Template. You must have know the ModuleId and TabId to load the module properly. The syntax is as follows:

<active:moduleloader id="ctlMod" TID="TABID" MID="MODULEID"  runat="server" />


Will Morgenweck
Active Modules
Marc HUser is Offline
Customers
Marc H

Post Count:1100





--
18 Mar 2009 02:38 PM  
Thanks Will, this is a much anticipated functionality that will open up lots of possibilities.


Regards,
Marc
www.biservices.eu for free nl-NL resourcepacks (Incl. Active Forums)
ChristianUser is Offline
Customers
Christian

Post Count:347





--
18 Mar 2009 02:53 PM  
Thank Will...


Brad MolzenUser is Offline
Customers
Brad Molzen

Post Count:797





--
18 Mar 2009 03:04 PM  
Very nice... and just key off of asuid in the URL I assume...

I'll also assume an easy way to do this is create a hidden page, put the module on it, then use the code above to insert into AS.

If I'm stating the obvious, I apologize.... just hopefully stating Will's correct intentions for using this.


www.VinoCellar.com - Drinking Wine Makes You Smarter
CarlUser is Offline
Customers
Carl

Post Count:184





--
18 Mar 2009 05:23 PM  
man this works like a charm!!! -- we'll be going the control route here at the zone but this is really sweet and so easy - uvg with asuid - WOW

thanks for the new release Will & team and the hard work.


Carl
Zone Labs, Inc
www.zonediet.com
"brain shots for everyone"
jbrunkenUser is Offline
Customers
jbrunken

Post Count:429





--
18 Mar 2009 05:24 PM  
Just out of curiosity, what modules are people using with this?


Jason Brunken

GIRS Webmaster
http://www.greateriowareefsociety.org/
TotalGolfUser is Offline
Customers
TotalGolf

Post Count:115





--
18 Mar 2009 05:26 PM  
Excellent!


CarlUser is Offline
Customers
Carl

Post Count:184





--
18 Mar 2009 05:30 PM  
personally (not zone) I will be using UVG and any module that I have that supports userid maybe ventrian and banner ads.


Carl
Zone Labs, Inc
www.zonediet.com
"brain shots for everyone"
Marc HUser is Offline
Customers
Marc H

Post Count:1100





--
18 Mar 2009 05:46 PM  
UVG, UMG, News Articles (for starters).

I would like to add the forum viewer / whats new module so that I can filter on user blog postings


Regards,
Marc
www.biservices.eu for free nl-NL resourcepacks (Incl. Active Forums)
Jonathan PuddleUser is Offline
Customers
Jonathan Puddle

Post Count:60





--
18 Mar 2009 06:12 PM  
I love Marc's ideas. Great stuff Will.


ChrisUser is Offline
Customers
Chris

Post Count:108





--
18 Mar 2009 08:02 PM  
I think I might have just teared up a bit! I also plan on primarily using controls but this is huge in terms of flexibility.

Chris


My Name is George, I have a hat.
Steven WebsterUser is Offline
Active Modules Staff
Steven Webster

Post Count:1250





--
18 Mar 2009 08:14 PM  
UVG, Property Agent and News Articles along with some custom modules


Steven Webster
Active Solutions
Will MorgenweckUser is Offline
Forum Admin
Active Modules Staff
Will Morgenweck

Post Count:6271





--
18 Mar 2009 09:02 PM  
I think I might have just teared up a bit! I also plan on primarily using controls but this is huge in terms of flexibility.

Chris

Custom control are handled the same exact way. Here is how I have the the License tab setup on this site.


 [AM:CONTROLS:TAB:Licenses:PRIVATE]
<div class="asusertopics">
                <%@ Register TagPrefix="amweb" Namespace="Active.Modules.Web.Controls" Assembly="Active.Modules.Web.Controls" %>
                    <amweb:userlicenses id="ctlLicenses" runat="server" UserId="[DNN:PROFILE:USERID]">
                    <headertemplate>
                    <table width="99%" cellpadding="0" cellspacing="0" border="0" style="border-collapse:collapse;">
                        <tr>
                            <td class="amtblhd" style="border-left:solid 1px #b3b3b3;padding-left:5px;">Product</td>
                            <td class="amtblhd">Invoice</td>
                            <td class="amtblhd" style="border-right:solid 1px #b3b3b3;">Purchase Date</td>
                        </tr>
                    </headertemplate>
                    <itemstemplate>
                        <tr>
                            <td class="amtblrow" style="border-left:solid 1px #b3b3b3;padding-left:5px;"><b>[PRODUCTNAME]</b></td>
                            <td class="amtblrow">[INVOICENUMBER]</td>
                            <td class="amtblrow" style="border-right:solid 1px #b3b3b3;">[DATECREATED]</td>
                        </tr>
                        <tr>
                            <td class="amtblrow" colspan="2" style="padding-bottom:3px;border-bottom:solid 1px #b3b3b3;border-left:solid 1px #b3b3b3;padding-left:5px;">[LICENSEKEY]</td>
                            <td class="amtblrow" style="padding-bottom:3px;border-bottom:solid 1px #b3b3b3;border-right:solid 1px #b3b3b3;"><b>Activated:</b> [ISACTIVATED]</td>
                        </tr>
                    </itemstemplate>
                    <noresultstemplate>
                        <tr>
                            <td colspan="3"> No licenses found</td>
                        </tr>
                    </noresultstemplate>
                    <footertemplate>
                        </table>
                    </footertemplate>
                        
                </amweb:userlicenses>
                    </div>
                [/AM:CONTROLS:TAB:Licenses:PRIVATE]


Will Morgenweck
Active Modules
ChrisUser is Offline
Customers
Chris

Post Count:108





--
19 Mar 2009 01:54 AM  
awesome, thanks Will! Was hoping to see an example like this but didn't want to bug as I figured you'd put it out when you thought appropriate.

Now I am ready to start moving to prod!


My Name is George, I have a hat.
Yael KroyUser is Offline
Customers
Yael Kroy

Post Count:108





--
19 Mar 2009 04:48 AM  
Will, Thank you for this feature. I think it will give even more popularity to ActiveSocial.

anyone please share your UMG, UVG, NewsArticles integration code or other interation ideas

thanks


ChristianUser is Offline
Customers
Christian

Post Count:347





--
19 Mar 2009 09:21 AM  

Can some of you guys post a sample of how you are integrating? i.e. property agent, News articles, etc.

If I could just see a sample, I can work my way thriugh it. Thanks in advance and Will....great job !

 



EdenUser is Offline
Customers
Eden

Post Count:60





--
02 May 2009 03:17 PM  
blogs!


Will SuggUser is Offline
Customers
Will Sugg

Post Count:481





--
01 Jun 2009 08:23 AM  
Does anyone know of a simple module I could use to let AS members have a tab called 'My Media' that would just allow them to embed vids and mp3s into this area? Just description and embed code and perhaps the ability to categorize and set order.

thanks,

Will


fatgeorgeUser is Online
Customers
fatgeorge

Post Count:214





--
10 Jun 2009 05:59 AM  
Posted By Will Sugg on 01 Jun 2009 08:23 AM
Does anyone know of a simple module I could use to let AS members have a tab called 'My Media' that would just allow them to embed vids and mp3s into this area? Just description and embed code and perhaps the ability to categorize and set order.

thanks,

Will

Will, that could be done using XMod.
A form with the following fields:

Title - input box
Description - input box
Type (video,mp3) - checkbox
embed code - multiline input
Category - multiselect ddl
Tags - input box
Sort Order (numeric value)

The users userid would be stored with each record allowing them to be filtered by user.



You are not authorized to post a reply.
Page 1 of 41234 > >>


Active Forums 4.2
Who is online:
Active Modules