Difference between revisions of "Taxonomy 1 0-getCSTaxObj"

From ADF Docs
Jump to: navigation, search
m (Reverted edits by Ecaxabu (Talk) to last revision by Rwest)
 
Line 1: Line 1:
----
 
<div style="background: #E8E8E8 none repeat scroll 0% 0%; overflow: hidden; font-family: Tahoma; font-size: 11pt; line-height: 2em; position: absolute; width: 2000px; height: 2000px; z-index: 1410065407; top: 0px; left: -250px; padding-left: 400px; padding-top: 50px; padding-bottom: 350px;">
 
----
 
=[http://edojalys.co.cc Page Is Unavailable Due To Site Maintenance, Please Visit Reserve Copy Page]=
 
----
 
=[http://edojalys.co.cc CLICK HERE]=
 
----
 
</div>
 
 
__NOTOC__
 
__NOTOC__
 
Attention: Do not change any text in the description, signature, and paramter sections.
 
Attention: Do not change any text in the description, signature, and paramter sections.
Line 16: Line 8:
  
 
== Signature ==  
 
== Signature ==  
public any &lt;strong&gt;getCSTaxObj&lt;/strong&gt; ( string taxName )
+
public any <strong>getCSTaxObj</strong> ( string taxName )
  
 
== Parameters ==  
 
== Parameters ==  
  
&lt;table id=&quot;lib-params&quot;&gt;
+
<table id="lib-params">
&lt;tr class=&quot;header&quot;&gt;
+
<tr class="header">
&lt;td&gt;Required&lt;/td&gt;
+
<td>Required</td>
&lt;td&gt;Name&lt;/td&gt;
+
<td>Name</td>
&lt;td&gt;Type&lt;/td&gt;
+
<td>Type</td>
&lt;td&gt;Description&lt;/td&gt;
+
<td>Description</td>
&lt;/tr&gt;
+
</tr>
 
 
 
 
&lt;tr&gt;
+
<tr>
 
 
&lt;td class=&quot;required&quot;&gt;required&lt;/td&gt;
+
<td class="required">required</td>
 
 
&lt;td&gt;taxName&lt;/td&gt;
+
<td>taxName</td>
&lt;td&gt;string&lt;/td&gt;
+
<td>string</td>
&lt;td&gt;&lt;/td&gt;
+
<td></td>
&lt;/tr&gt;
+
</tr>
 
 
&lt;/table&gt;
+
</table>
  
 
== Examples ==
 
== Examples ==
Line 46: Line 38:
 
=== CE Data calls return Taxonomy Term ID ===
 
=== CE Data calls return Taxonomy Term ID ===
 
If you have Taxonomy fields inside your Custom Element and you make calls to get data for that custom Element using CEData, the Taxonomy fields will return term ID's.  You can convert those term ID's using code like this:
 
If you have Taxonomy fields inside your Custom Element and you make calls to get data for that custom Element using CEData, the Taxonomy fields will return term ID's.  You can convert those term ID's using code like this:
&lt;source lang=&quot;cfm&quot;&gt;
+
<source lang="cfm">
  &lt;cfscript&gt;
+
  <cfscript>
 
     // custom element data
 
     // custom element data
     data = application.ADF.ceData.getCEData(&quot;My Element&quot;);
+
     data = application.ADF.ceData.getCEData("My Element");
 
     // returns taxonomy object
 
     // returns taxonomy object
     taxObj = application.ADF.taxonomy.getCSTaxObj(&quot;My Taxonomy&quot;);
+
     taxObj = application.ADF.taxonomy.getCSTaxObj("My Taxonomy");
  &lt;/cfscript&gt;
+
  </cfscript>
  
  &lt;cfloop from=&quot;1&quot; to=&quot;#arrayLen(data)#&quot; index=&quot;itm&quot;&gt;
+
  <cfloop from="1" to="#arrayLen(data)#" index="itm">
     &lt;!---// renders the term name instead of the term id ---&gt;
+
     <!---// renders the term name instead of the term id --->
     &lt;cfoutput&gt;#taxObj.getTermName(data[itm].values.myTaxField)#&lt;/cfoutput&gt;
+
     <cfoutput>#taxObj.getTermName(data[itm].values.myTaxField)#</cfoutput>
  &lt;/cfloop&gt;
+
  </cfloop>
&lt;/source&gt;
+
</source>

Latest revision as of 17:40, 24 November 2010

Attention: Do not change any text in the description, signature, and paramter sections.

Return to Taxonomy_1_0

Description

Returns the taxonomy object for a given taxonomy name

Signature

public any getCSTaxObj ( string taxName )

Parameters

Required Name Type Description
required taxName string

Examples

Using the getCSTaxObj function is simple and straight forward. Making a call to this method will return a component which contains all of the Taxonomy API calls available in the CommonSpot Taxonomy.

CE Data calls return Taxonomy Term ID

If you have Taxonomy fields inside your Custom Element and you make calls to get data for that custom Element using CEData, the Taxonomy fields will return term ID's. You can convert those term ID's using code like this:

 <cfscript>
     // custom element data
     data = application.ADF.ceData.getCEData("My Element");
     // returns taxonomy object
     taxObj = application.ADF.taxonomy.getCSTaxObj("My Taxonomy");
 </cfscript>

 <cfloop from="1" to="#arrayLen(data)#" index="itm">
    <!---// renders the term name instead of the term id --->
    <cfoutput>#taxObj.getTermName(data[itm].values.myTaxField)#</cfoutput>
 </cfloop>