I have this:
@(Html.Infragistics().TextEditor() .ID("Name") .Width(500) .NullText("Type something") .Value(Model.Name) .Render())
The client receive this:
<input id="Name" /><input name="Name" type="hidden" /><script type="text/javascript">//<!--<![CDATA[$(function () {$('#Name').igEditor({ type: 0, width: 500, nullText: 'Type something', value: 'Sony', inputName: 'Name' });});//]]>--></script>
Shouldn't be an igTextEditor?
(http://help.infragistics.com/Doc/jQuery/Current/CLR4.0?page=igTextEditor_Overview.html)
Ok, now I understand it, igEditor type 0 is the same than igTextEditor. That's the right answer I think.