djBorderContainer - Dojo ボーダーコンテナ

コンテナ内のさまざまな領域に配置されるペインを組み込みます。

カテゴリ

拡張ライブラリ

構文

<xe:djBorderContainer attributes>content</xe:djBorderContainer>
表 1. 必須プロパティ
プロパティ 説明
id デフォルトは djBorderContainer1djBorderContainer2 などです。
style 幅と高さを設定します。
表 2. すべてのプロパティ
カテゴリ プロパティ
アクセシビリティ titlewaiRolewaiState
basics bindingdesigndirguttersidlangliveSplittersloadedpersistrenderedrendererType
dojo dojoAttributesdojoTypedragRestrictiontooltip
イベント onBluronClickonCloseonDblClickonFocusonHideonKeyDownonKeyPressonKeyUponMouseDownonMouseEnteronMouseLeaveonMouseMoveonMouseOutonMouseOveronMouseUponShow
styling disableThemestylestyleClassthemeId

使用法

これは Dojo コントロールです。

境界線コンテナコントロールには、境界線ペインコントロールが含まれます。各ペインには、コンテナ内で指定した領域が対象として含まれます。

このコントロールは、最新のアクセシビリティ標準に対してテストされていません。推奨されるアクセシビリティパスは パネルコントロールです。

以下の例は、境界線コンテナコントロールに含まれる 5 つの境界線ペインコントロールを示しています。
<xe:djBorderContainer id="djBorderContainer1" style="width:400px; height:200px;">
	<xe:djBorderPane id="djBorderPane1" region="top">top</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane2" region="center">center</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane3" region="bottom">bottom</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane4" region="left">left</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane5" region="right">right</xe:djBorderPane>
</xe:djBorderContainer>