You can perform this action within the same page by keep the search contents in a div and enabling it on click of list view. Once search functionality is completed you can easily update it to parent div unlike opening a different pop up window
Mark this post as answer if it helps you!!!
Regards
Sangamesh Belawatgi,
Software Developer,
Bangalore - INDIA
pradeepmanne
Member
109 Points
103 Posts
A Popup Window for Search in Asp.net Dynamic Data
Dec 17, 2012 11:54 AM|LINK
Hi,
i want a popup window for search functionality,when i click search button on list view page it should open in popup where
i will perform the my search functions and I should update the selected value into my parent page.
provide me the suggestions for this process
Thanks inadvance
Pradeep kumar
heyitsme
Participant
1085 Points
399 Posts
Re: A Popup Window for Search in Asp.net Dynamic Data
Dec 17, 2012 12:03 PM|LINK
You can perform this action within the same page by keep the search contents in a div and enabling it on click of list view. Once search functionality is completed you can easily update it to parent div unlike opening a different pop up window
Regards
Sangamesh Belawatgi,
Software Developer,
Bangalore - INDIA
Decker Dong ...
All-Star
118619 Points
18779 Posts
Re: A Popup Window for Search in Asp.net Dynamic Data
Dec 18, 2012 01:03 AM|LINK
Hi,
Considering it that a Pop-Up window, maybe you can use AJAX Model Pop-Up Dialog or jQuery's Pop-Up window.
Reguards!
Sujeet Saste
Contributor
3008 Points
572 Posts
Re: A Popup Window for Search in Asp.net Dynamic Data
Dec 18, 2012 03:32 AM|LINK
Hi,
You can use ajax ModalPopup extender for your requirement.
.ASPX Page
<asp:Label ID="lbl" runat="server"></asp:Label> <asp:ModalPopupExtender ID="mppTimeOut" runat="server" TargetControlID="lbl" PopupControlID="pnltimeOut" BackgroundCssClass="modalBackground"> </asp:ModalPopupExtender> <asp:Panel Width="350px" ID="pnltimeOut" runat="server" CssClass="modalPopup" Style="vertical-align: middle; display: none;"> </asp:Panel>Code behind for show popup :
To hide and update your search result, write code on onClick event of button placed inside above panel (Search critaria panel):
Do FEAR (Face Everything And Rise)
Please mark as Answer if my post helps you..!
My Blog