blob: b33e9000c441933f90d501ad7b97330efb6c6b3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<com:TContent ID="Content">
<h1>TCallback Demo</h1>
<com:TClientScript UsingPradoScripts="ajax" />
<com:TCallback id="control1"
ClientSide.EnablePageStateUpdate="false"
OnCallback="control1onCallback" />
<com:TCallback id="control2"
ClientSide.HasPriority="false"
OnCallback="control1onCallback" />
<com:TActiveLabel id="label1" Text="Name:" />
<com:TTextBox id="text1" />
<com:TCheckBoxList>
<com:TListItem Text="One" />
<com:TListItem Text="Two" />
</com:TCheckBoxList>
<com:TButton id="button1" Text="Submit 1" CausesValidation="false" />
<com:TButton id="button2" Text="Submit 2" CausesValidation="false" />
<script>
Event.observe("<%= $this->button1->ClientID %>", "click", function(event)
{
<%= $this->control1->CallbackReference %>
Event.stop(event);
});
Event.observe("<%= $this->button2->ClientID %>", "click", function(event)
{
<%= $this->control2->CallbackReference %>
Event.stop(event);
});
</script>
</com:TContent>
|