I’m using a aspx file because of my ReportViewer control and my jQuery datepicker from a asp:TextBox doesn’t pop-up.
How can I display a DatePicker in the TextBox ?
<form id="form1" runat="server">
<div>
<asp:DropDownList ID="DropDownListAgenti" runat="server" DataTextField="nume" DataValueField="id_agent" DataSourceID="EntityDataSourceHelios" />
From <asp:TextBox ID="TextBoxFrom" Width="80" runat="server"></asp:TextBox>
To <asp:TextBox ID="TextBoxTo" Width="80" runat="server"></asp:TextBox>
<asp:Button ID="Display" runat="server" onclick="Display_Click" Text="Display" />
<rsweb:ReportViewer ID="ReportViewerAgentvanz" runat="server" Font-Names="Verdana" Font-Size="8pt" Width="800px" Height="800px" InteractiveDeviceInfos="(Collection)" />
<asp:ScriptManager ID="ScriptManagerAgentvanz" runat="server" />
<asp:EntityDataSource ID="EntityDataSourceHelios" runat="server" EnableFlattening="False"
ConnectionString="name=HeliosEntities" DefaultContainerName="HeliosEntities" EntitySetName="agenti"
Select="it.[id_agent], it.[nume]" OrderBy="it.nume ASC" Where="it.active = TRUE">
</asp:EntityDataSource>
</div>
</form>
Other workaround – Can I display a rdlc reportviewer in a razor page(*.cshtml) ?
I have jQuery 1.7.2, Nuget 1.7 and for my razor textbox I have a Editor Template
EDIT : link to the html file : click
You’ve not included the JQuery library, the JQueryUI library or the JQueryUI CSS files.
Add this to the
<head>of your document: