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)
Hello,
This is fine. If you have any other questions on that matter, please let me know.
Sorry Hristo, I didn't read carefully what you wrote since the beginning ;)
Ok, now I understand it, igEditor type 0 is the same than igTextEditor. That's the right answer I think.
I am still following your case. Have you been able to resolve the issue? using the suggested ?If you have any concerns or questions, please feel free to contact me, I will be glad to help you.Thank you for choosing Infragistics components!
The helper is sending the igTextEditor. If you happen you are not able to call the widget at some time, please try first to call the widget and then the option/method you need:
$("#Name").igTextEditor();$("#Name").igTextEditor("value", 55)
Did you try this on your side and let me know if this resolves your issue.
Looking forward to hearing from you.