Requires Platform 4.2+
Plug-ins
Nexaweb Client プラグインアーキテクチャは、開発者が独自のタグや属性、XML シンタックスを実装できるよう設計されており、これによってNexaweb Java アプリケーション用Nexaweb Client の機能を拡張できます。通常、開発者は新しいUI コンポーネントを通じて機能を拡張しますが、論理演算やレイアウトペインなどのカスタムロジックを実装することも可能です。
...
Code Block |
---|
<window> <borderPane/> <label text="A custom chart" borderPosition="north" /> <!-- a specialized chart created via the plug-in architecture --> <financialChart title="Dow Jones by year" borderPosition="center" onSelect="myPage.jsp> <xAxis start="1950" end="2005"/> <yAxis start="0" y="5000"/> <pointData points="1900,2000,2020 ... "/> </financialChart> </window> |
...