Click here to Skip to main content
15,886,519 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is it possible when popup page close then only a single dropdownlist will refresh of the parent page. Please give me a solution
Posted
Comments
SandeepKushwah 15-Sep-14 5:45am    
We need code to look into it... BTW nothing is impossible ;). Please submit your code
Sumon562 15-Sep-14 5:48am    
<script type="text/javascript">
$(document).ready(function () {
$(".btPOPUP").live("click", function () {
$("POPUPPanel").hide();
var v = $(this).val();
if (v == "Add Defect Type") {
$(".POPUPHeaderText").html("Create New Defect Type");
$("#POPUPIFrame").attr("src", "Smt_CreateDefectType.aspx");
}
if (v == "Add Defect Category") {
$(".POPUPHeaderText").html("Create New Defect Category");
$("#POPUPIFrame").attr("src", "Smt_CreateDefectCategory.aspx");
}
$(".POPUPPanel").toggle("slow");
return false;
});
$(".POPUPClose").click(function () {
$(".POPUPPanel").toggle("slow");
});
});

</script>
Sinisa Hajnal 15-Sep-14 6:05am    
Use improve question link and copy this above in your original post.

You can use jQuery ajax function to reload any part of the page. Alternatively play around with asp:UpdatePanel

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900