Good Day ,
I'm using ASP.Net nested gridview and want to use datetime picker for child grid view. it's showing the datetimepicker icon on it but doesn't show the calender when I click on it. It's OK for parent grid view and please help some one to solve this out.
I'm using ASP.Net UpdatePanel and nested gridviews inside update panel.
It'll working great with the upper grid view but for child grid view it'll only show the calender icon.
Script :
<script type="text/javascript">
$(document).ready(function () {
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(bindPicker);
bindPicker();
});
function bindPicker() {
$("input[type=text][id*=txtDate]").unbind();
$("input[type=text][id*=txtDate]").datepicker({
showOn: "button",
buttonImage: '<%=Page.ResolveUrl("~/App_Themes/" + this.Page.Theme.ToSt ...
Go to the complete details ...