$(document).ready(function () {
$("#container").hide();
});
$(window).load(function () {
$("#container").show();
});
Thursday, January 12, 2012
SHow/Hide container using JQuery
--
--
var display = $("div#containerId").css('display')
if (display == "none") {
$("div#searchbar").slideDown("slow");
$("#searchButton").attr("value", "Hide");
}
else {
$("div#containerId").slideUp("slow");
$("#searchButton").attr("value", "Show");
}
}
Tuesday, January 10, 2012
Monday, January 9, 2012
Thursday, December 29, 2011
Datetime picker not showing inside updatepanel after partial postback
Issue: dattime picker not showing after partial postback
Solution:
Solution:
<script type="text/javascript"> function pageLoad(sender, args) {
$('#<%=txtDate.ClientID %>').datepicker({
changeMonth: true,
changeYear: true
}
);
} Reference:http://stackoverflow.com/questions/7823969/javascript-in-update-panel-doesnt-work-after-partial-postback
Friday, July 1, 2011
MS Word Office Automation - Filling Text Form Fields And Check Box Form Fields And Mail Merge
Tuesday, June 28, 2011
Subscribe to:
Posts (Atom)