Add testcase for multiple missing IDs
[mono.git] / mcs / class / System.Web.Extensions / System.Web.UI / AsyncPostBackTrigger.cs
1 //
2 // AsyncPostBackTrigger.cs
3 //
4 // Author:
5 //   Igor Zelmanovich <igorz@mainsoft.com>
6 //
7 // (C) 2007 Mainsoft, Inc.  http://www.mainsoft.com
8 //
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.Collections.Generic;
32 using System.Text;
33 using System.ComponentModel;
34 using System.Reflection;
35
36 namespace System.Web.UI
37 {
38         public class AsyncPostBackTrigger : UpdatePanelControlTrigger
39         {
40                 static readonly MethodInfo _eventHandler = typeof (AsyncPostBackTrigger).GetMethod ("OnEvent");
41
42                 string _eventName;
43
44                 public new string ControlID {
45                         get {
46                                 return base.ControlID;
47                         }
48                         set {
49                                 base.ControlID = value;
50                         }
51                 }
52
53                 [DefaultValue ("")]
54                 [Category ("Behavior")]
55                 public string EventName {
56                         get {
57                                 if (_eventName == null)
58                                         return String.Empty;
59                                 return _eventName;
60                         }
61                         set {
62                                 _eventName = value;
63                         }
64                 }
65
66                 protected internal override bool HasTriggered ()
67                 {
68                         Control ctrl = FindTargetControl (true);
69                         string ctrlUniqueID = ctrl != null ? ctrl.UniqueID : null;
70                         if (ctrlUniqueID == null)
71                                 return false;
72                         
73                         if (String.Compare (Owner.ScriptManager.AsyncPostBackSourceElementID, ctrlUniqueID, StringComparison.Ordinal) == 0)
74                                 return true;
75                         return false;
76                 }
77
78                 // LAME SPEC: it seems DefaultEventAttribute is never queried for the event name.
79                 protected internal override void Initialize ()
80                 {
81                         Control c = FindTargetControl (true);
82                         ScriptManager sm = Owner.ScriptManager;
83                         string eventName = EventName;
84
85                         if (!String.IsNullOrEmpty (eventName)) {
86                                 EventInfo evi = c.GetType ().GetEvent (eventName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase);
87                                 if (evi == null)
88                                         throw new InvalidOperationException (String.Format ("Could not find an event named '{0}' on associated control '{1}' for the trigger in UpdatePanel '{2}'.", eventName, c.ID, Owner.ID));
89
90                                 Delegate d = null;
91                                 try {
92                                         d = Delegate.CreateDelegate (evi.EventHandlerType, this, _eventHandler);
93                                 }
94                                 catch (ArgumentException) {
95                                         throw new InvalidOperationException (String.Format ("The event '{0}' in '{1}' for the control '{2}' does not match a standard event handler signature.", eventName, c.GetType (), c.ID));
96                                 }
97
98                                 evi.AddEventHandler (c, d);
99                         }
100                         
101                         sm.RegisterAsyncPostBackControl (c);
102                 }
103
104                 public void OnEvent (object sender, EventArgs e)
105                 {
106                         UpdatePanel owner = Owner;
107                         if (owner != null && owner.UpdateMode != UpdatePanelUpdateMode.Always)
108                                 owner.Update ();
109                 }
110
111                 public override string ToString () {
112                         return String.Format ("AsyncPostBack: {0}.{1}", ControlID, EventName);
113                 }
114         }
115 }