diff options
| author | xue <> | 2006-01-02 04:54:31 +0000 | 
|---|---|---|
| committer | xue <> | 2006-01-02 04:54:31 +0000 | 
| commit | 423f4e6fb0afba2685589b700d30055cb6dcd099 (patch) | |
| tree | c3b53ea0cc226230b5e39c47cbbc822fc2981f20 /demos/quickstart/protected/pages/Controls/Samples | |
| parent | cb54d4b2bc36e098e38a25a29a844e726fa501ad (diff) | |
Added TRadioButtonList, TTable related controls.
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples')
| -rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TCheckBoxList/Home.page | 16 | 
1 files changed, 15 insertions, 1 deletions
| diff --git a/demos/quickstart/protected/pages/Controls/Samples/TCheckBoxList/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TCheckBoxList/Home.page index 04d6e91b..7f8772c8 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TCheckBoxList/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/TCheckBoxList/Home.page @@ -9,7 +9,7 @@  Check box list with initial items:
  </td>
  <td class="sampleaction">
 -<com:TCheckBoxList RepeatLayout="Flow" RepeatDirection="Horizontal" RepeatColumns="2">
 +<com:TCheckBoxList AutoPostBack="true" BorderWidth="1px" BorderStyle="solid" BorderColor="black" GridLines="Both" RepeatLayout="Table" RepeatDirection="Horizontal" RepeatColumns="2">
    <com:TListItem Value="value 1" Text="item 1" />
    <com:TListItem Value="value 2" Text="item 2" Selected="true" />
    <com:TListItem Value="value 3" Text="item 3" />
 @@ -18,6 +18,20 @@ Check box list with initial items:  </td>
  </tr>
 +<tr>
 +<td class="samplenote">
 +Check box list with initial items:
 +</td>
 +<td class="sampleaction">
 +<com:TRadioButtonList AutoPostBack="true" BorderWidth="1px" BorderStyle="solid" BorderColor="black" GridLines="Both" RepeatLayout="Table" RepeatDirection="Horizontal" RepeatColumns="2">
 +  <com:TListItem Value="value 1" Text="item 1" />
 +  <com:TListItem Value="value 2" Text="item 2" Selected="true" />
 +  <com:TListItem Value="value 3" Text="item 3" />
 +  <com:TListItem Value="value 4" Text="item 4" Selected="true" />
 +</com:TRadioButtonList>
 +</td>
 +</tr>
 +
  </table>
  </com:TContent>
\ No newline at end of file | 
