<div rcf:id="authinfoContainer" rcf:type="ViewStack" rcf:width="700px" rcf:height="50px"
style="left: 0px; top: 5px; position: absolute" rcf:selectedIndex="0">
<!-- ログイン認証前 -->
<div rcf:id="beforeauthContainer" rcf:type="ViewContainer" rcf:label="ログイン認証前"
rcf:width="620px" rcf:height="30px" style="left: 5px; top: 10px; position: absolute">
<!-- 認証部のUI部品定義とモデルバインディング -->
<div id="before_div"
style="visibility: hidden; width: 620px; height: 30px; left: 0px; top: 0px; position: absolute">
<div rcf:id="label_userid" rcf:type="Text" rcf:value="ユーザID"
style="left: 5px; top: 8px; position: absolute"></div>
<!-- userid入力 テキスト入力フィールド定義 -->
<div rcf:id="userid" rcf:type="TextInput" rcf:width="155px" rcf:height="20px"
style="left: 80px; top: 5px; position: absolute" rcf:value="{authinfoModel.userid}"></div> (1)
<div rcf:id="label_password" rcf:type="Text" rcf:value="パスワード"
style="left: 260px; top: 8px; position: absolute"></div>
<!-- password入力 テキスト入力フィールド定義 -->
<div rcf:id="password" rcf:type="TextInput" rcf:width="155px" rcf:height="20px"
style="left: 340px; top: 5px; position: absolute" rcf:value="{authinfoModel.password}" (2)
rcf:password="true"></div>
<!-- ログインボタン定義 -->
<div rcf:id="loginButton" rcf:type="Button" rcf:label="ログイン"
rcf:width="80px" rcf:height="24px" style="left: 515px; top: 5px; position: absolute"></div>
</div><!-- id="before_div" -->
</div>
<!-- ログイン認証後 -->
<div rcf:id="afterauthContainer" rcf:type="ViewContainer" rcf:label="ログイン認証後"
rcf:width="620px" rcf:height="30px" style="left: 5px; top: 10px; position: absolute">
<!-- 認証部のUI部品定義とモデルバインディング -->
<div id="after_div"
style="visibility: hidden; width: 620px; height: 30px; left: 0px; top: 0px; position: absolute">
<!-- userid テキストフィールド定義 -->
<div rcf:id="userid_Text" rcf:type="Text" rcf:value=" "
style="left: 5px; top: 8px; position: absolute"></div>
<div rcf:id="label_message" rcf:type="Text" rcf:value=" さん、こんにちは。認証されました。"
style="left: 50px; top: 8px; position: absolute"></div>
<!-- ログアウトボタン定義 -->
<div rcf:id="logoutButton" rcf:type="Button" rcf:label="ログアウト"
rcf:width="80px" rcf:height="24px" style="left: 515px; top: 5px; position: absolute"></div>
</div><!-- id="after_div" -->
</div>
</div> |