<span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">Hi,</span><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">
i have a main-component where i overwrite updateRoot to inject some css.</div><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">On the main-page, i render a list of domain-objects, every domain-object gets an &quot;edit&quot;-link. By pressing edit, i construct a component (-&gt; descriptions asComponentOn: aMitarbeiter).</div>
<div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">The component will be rendered via self call: component. To inject css in the resulting editor, i add a custom MAFormDecoration (with an overwritten updateRoot:).</div>
<div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">Now i have the editor for that domain-object. The domain-object has a one-to-many-relationship to another domain-object, it is modelled like this:</div>
<div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><div><br></div><div>descriptionHistorieArbeitsbereiche</div><div>^MAToManyRelationDescription new</div><div><span style="white-space:pre-wrap">        </span>classes: (Array with: HistorieArbeitsbereiche);</div>
<div><span style="white-space:pre-wrap">        </span>accessor: (MAPluggableAccessor read:[ :mitarbeiter | mitarbeiter historieArbeitsbereiche ] write: [:mitarbeiter :historieArbeitsbereiche | mitarbeiter historieArbeitsbereiche: historieArbeitsbereiche]);</div>
<div> <span style="white-space:pre-wrap">        </span>label: &#39;Arbeitsbereiche&#39;;</div><div><span style="white-space:pre-wrap">        </span>default: #();</div><div><span style="white-space:pre-wrap">        </span>priority: 500;</div>
<div><span style="white-space:pre-wrap">        </span>beSorted;</div><div><span style="white-space:pre-wrap">        </span>cssClass: #historieArbeitsbereiche;</div><div><span style="white-space:pre-wrap">        </span>reference: (HistorieArbeitsbereiche descriptionArbeitsbereich);</div>
<div>      yourself</div></div><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><br></div><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">
The problem is, that i have no idea, how to inject css in the resulting editor (when i click on &quot;edit&quot; or &quot;add&quot;).</div><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">
<br></div><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">Is there a way to inject an link to a css into the header of _every_ page that is rendered? If i use call: to render a component, the calling component gets replaced (including the &lt;header&gt; section). If a magritte-editor is redered via a OneToMany-Relationsip i don&#39;t seem to have access to the header-section of the resulting html (i only could use a custom renderer - here i could try to load css from the &lt;body&gt;-section of the page - but that seems do be no clean way.</div>
<div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><br></div><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">
thx and regards,</div><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">Stefan</div>