I have the following code in my view:-
@using Infragistics.Web.Mvc@model Px.ModelFirst3.ViewModels.ClientSelectViewModel
@{ ViewBag.Title = "ClientSelect";}
<!-- These style references are used by the Infragistics Loader rendered below to change the theme --><link href="~/Infragistics/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" /><link href="~/Content/Site.css" rel="stylesheet" />
<!-- Required JavaScript Files for using Infragistics jQuery UI-based widgets with the Infragistics Loader --><script src="~/Scripts/modernizr-2.6.2.js"></script><script src="~/Scripts/jquery-2.0.3.js"></script><script src="~/Scripts/jquery-ui-1.10.3.js"></script>
<!-- This script reference is require by the Infragistics Loader rendered below --><script src="~/Infragistics/js/infragistics.core.js"></script><script src="~/Infragistics/js/infragistics.dv.js"></script><script src="~/Infragistics/js/infragistics.lob.js"></script><script src="~/Infragistics/js/infragistics.loader.js"></script>
@(Html.Infragistics().Loader() .ScriptPath(Url.Content("~/Infragistics/js/")) .CssPath(Url.Content("~/Infragistics/css/")) .Render() )
<h2>Client Details</h2>@{ if (Model.JuristicPerson == null) { <table> <tr> <td>@(Html.LabelFor(model => model.NaturalPerson.Surname))</td> <td>@(Html.Infragistics().TextEditorFor(model => model.NaturalPerson.Surname) .Width(300) .Render())</td> </tr> </table> }}
This displays as per Ignite_01.jpg
Hi Mark,
If you have any other questions or concerns, please feel free to contact us.
Hello Mark,
The problem in your sample is that you have duplicated scripts.
When using igLoader you don't have to reference these scripts and vice versa:
<script src="~/Infragistics/js/infragistics.core.js"></script><script src="~/Infragistics/js/infragistics.dv.js"></script><script src="~/Infragistics/js/infragistics.lob.js"></script>
Basically you have 3 different ways to reference Ignite UI scripts:
I have solved the problem by removing the following references:-
Please would someone inform me what the use of the above references would be.
Many thanks.
The problem is that I can only delete characters from the textbox, but cannot change or insert characters.
If I comment out the following code it displays as per Ignite_02.jpg where I may add, change and delete characters in the textbox.
@*<script src="~/Infragistics/js/infragistics.loader.js"></script>
@(Html.Infragistics().Loader() .ScriptPath(Url.Content("~/Infragistics/js/")) .CssPath(Url.Content("~/Infragistics/css/")) .Render() )*@
Please would someone point out what I am doing wrong.