diff options
author | ctrlaltca@gmail.com <> | 2011-10-31 08:20:28 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-10-31 08:20:28 +0000 |
commit | 91bb0070322f3cbde4c4600574dfb995ef4360e4 (patch) | |
tree | 2947d54a5bf56a11633ac39bf2645ad02a77d2df /demos/quickstart/protected | |
parent | 23757f1c010f0d6123e52c89a3c29caa1a6373ef (diff) |
TActiveMultiView: don't render the clientiside if the active view did not change; fixed example in quickstart
TMultiView: added missing parameter in error message
Diffstat (limited to 'demos/quickstart/protected')
-rw-r--r-- | demos/quickstart/protected/pages/ActiveControls/Samples/TActiveMultiView/Home.page | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveMultiView/Home.page b/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveMultiView/Home.page index 557f439e..deaaa187 100644 --- a/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveMultiView/Home.page +++ b/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveMultiView/Home.page @@ -9,7 +9,7 @@ <com:TActiveTextBox ID="Memo" />
<hr/>
<com:TActiveButton Text="View 2" CommandName="NextView" />
- <com:TActiveButton Text="View 3" CommandName="SwitchViewIndex" ActiveControl.CallbackParameter="2" />
+ <com:TActiveButton Text="View 3" CommandName="SwitchViewIndex" CommandParameter="2" />
</com:TView>
<com:TView>
<h2>View 2</h2>
@@ -29,7 +29,7 @@ <br/>
<com:TActiveLabel ID="Result2" />
<hr/>
- <com:TActiveButton Text="View 1" CommandName="SwitchViewID" ActiveControl.CallbackParameter="View1" />
+ <com:TActiveButton Text="View 1" CommandName="SwitchViewID" CommandParameter="View1" />
<com:TActiveButton Text="View 2" CommandName="PreviousView" />
</com:TView>
</com:TActiveMultiView>
|