Link to home
Start Free TrialLog in
Avatar of PeteEngineer
PeteEngineerFlag for India

asked on

Control missing after jquery registration




I am trying to register a jquery control using the below line:

@MVC.Controls.MVCControlsScriptManager.Instance.SetUseJqCustom(true, "1.8.2").RegisterScriptsAndStyles()


registration went fine and the controls works well

but the controls after the registered controls are invisible in the webpage.



Control Code
------------

<div class="editor3-label">
                    @Html.LabelFor(m => m.IssueToDate)
                </div>
                <div class="editor3-field">
                    @Html.TextBoxFor(m => m.IssueToDate).AsDatePicker(new MVC.Controls.DatePicker(dateFormat: "dd/mm/yy"))
                    @Html.ValidationMessageFor(m => m.IssueToDate, "*")
                </div>


Please help me !
ASKER CERTIFIED SOLUTION
Avatar of PeteEngineer
PeteEngineer
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial