Is there any workaround that will allow me to use the RadInputManager on an MVC application?
Specifically in a block of code like:
| <% using (Ajax.BeginForm("Search", "Events")) |
| { %> |
| <span id="EventSearchDiv"> |
| <%= Html.TextBox("EventSearch")%> |
| <input type="submit" value="Search" /> |
| </span> |
| <telerik:RadInputManager ID="RadInputManager1" runat="server"> |
| <telerik:TextBoxSetting BehaviorID="EventSearchBehavior" |
| EmptyMessage="Enter Event ID" |
| Validation-IsRequired="true" |
| ErrorMessage="Enter search text"> |
| <TargetControls> |
| <telerik:TargetInput ControlID="EventSearchDiv" /> |
| </TargetControls> |
| </telerik:TextBoxSetting> |
| </telerik:RadInputManager> |
| <% } %> |
I get