"Using JavaScript control" nullifies other Dojo components

I’ve been including dojo components in my Domino form using the following $$HTMLHead field:

"<script type="text/javascript" src="/domjs/dojo-1.1.1/dojo/dojo.js" djConfig="parseOnLoad: true"> "

“<style type="text/css">” +

" @import "/domjs/dojo-1.1.1/dijit/themes/tundra/tundra.css";" +

" @import "/domjs/dojo-1.1.1/dojo/resources/dojo.css"" +

“”

However, when I change a Rich Text field to use the new “Using JavaScript control” setting, the dojo rich text area appears, but none of my other dojo controls (FilteringSelect, ComboBox, TextArea, etc.) will load.

Subject: Must invoke parse() yourself

This is probably way too old a reply to help you, but I just tripped over this too :slight_smile: When you enable the Javascript control, Domino adds the following to the top of the html, above any HTML Header entries you can add:

Dojo will only initialize once, which means that your

Add that and your other controls will come to life again.