Although I add my css Class below 'FreeText', an inline style which is being rendered ( not by me ) is restricting the size of the box in my case to 261 * 31 high. Any way to prevent this ?
<EditorProviders>
<ig:TextBoxProvider ID.="WebHierarchicalDataGrid1_FreeText">
<EditorControl ID="FreeText" Columns="30" Rows="100" CssClass="FreeText" TextMode="MultiLine">
</EditorControl>
</ig:TextBoxProvider>
</EditorProviders>
Hello soberly,
the rendered style is the default CSS class igg_EditCell which overrides yours.
You should use !important rule in order to make your style take precedence over the default one.
http://www.w3.org/TR/CSS2/cascade.html#important-rules
Let me know if you have further questions.