If I have a property on my web part which has a drop-down list with the following SQL Query data source:
SELECT SKUID, SKUName
FROM View_COM_SKU
I have the "Has depending fields" option checked on this property. How can I use that value in another property?
My other property has "Depends on another field" checked and the following query:
SELECT soc.CategoryID, oc.CategoryDisplayName
FROM COM_SKUOptionCategory soc
JOIN COM_OptionCategory oc ON oc.CategoryID = soc.CategoryID
WHERE soc.SKUID = '{% TicketSKU %}'
I have tried various macro syntaxes to get this to work and am thus far unable to.
↧