I'm trying to get some javascript to run for a static select CCE widget on one of my content types' editing form.
In my *themes*.xml I have:
<core:theme extend="corporate" merge-css="true" merge-javascript="true" merge-template="true">
<core:template key="vcm-widget-simpleselect:ContentInstance:FEED:FEED_TYPE" path="/extensions/theme/otfeed.jsp">
<core:region-template key="region-parent" template="vcm-widget-simpleselect" />
</core:template>
</core:theme>
(FEED is the name of the content type and it has an attribute called FEED_TYPE)
However, otfeed.jsp is not getting applied to the static select cce widget. I'm guessing that's because the "key=" attribute isn't targeting that widget. Does anyone know what the right "key name" is for the static select cce widget (i.e. what should I put for the key attribute instead of "vcm-widget-simpleselect"), or do they know where I can find what the different widgets' key names are?