I am wondering how I am able to set the TargetControlID
of my ModalPopupExtender
to the Button on my ListView
.
The button that I am trying to set the TargetControlID
to is in the Alternating and Item template on the ListView. So I believe I would need to set the TargetControlID
to either two buttons, or have two different ModalPopupExtenders
.
Here is my ModalPopupExtender
:
<cc1:ModalPopupExtender ID="mp1" runat="server" PopupControlID="Panl1" TargetControlID="Button1"
CancelControlID="Button2" BackgroundCssClass="Background" OnLoad="mp1_Load">
</cc1:ModalPopupExtender>
And here is the alternating template for my listview:
<AlternatingItemTemplate>
<!--Input fields that do not apply to the question-->
..
..
..
<asp:Button ID="Button1" runat="server" Text="Show Popup" />
</AlternatingItemTemplate>
This will be the exact same setup for the ItemTemplate.
You could use java-script to do the job instead:
UPDATE (using server side) You need to set a fake server button(display: none) as a target control id to your popup extender first:
on your code behind whenever you want to display or close the popup, you just need to call the following functions: