Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Sv translation
languageen

This extension enables you to render selected table with custom renderer and display selected member as link which will redirect to predefined url (table which has been already created in BellaDati will be rendered with custom layout).

Image Modified

This extension can be downloaded from here.

Extension can be setup by using following parameters:

tableViewId: defines id of view which should be rendered via custom renderer

indexOfColumnWithLabel: index of column which will be displayed as label (index of first column in the source table is 0)

indexOfColumnWithLink: index of column which will be used as link (index of first column in the source table is 0)

In order to display custom table with the link in the report, you should create custom content view, switch to html and use following code:

Code Block
 <iframe id="tableExtension" src="https://service.belladati.com/en/extension/detail/29"></iframe>
//source of the iFrame should be replaced by the link to your extension
<script>
var iframe = document.getElementById("tableExtension");
// get view container
var viewContainer = $(iframe).parents('div.t-bdlayout-content');
iframe.width = viewContainer.width();
iframe.height = viewContainer.height() - 90;
</script>

Table will be rendered after saving the settings.

Sv translation
languageja

この拡張機能ではカスタムレンダラで選択したテーブルをレンダリングし、リンクとして選択したメンバーを表示することができます。このリンクは、事前定義済みのURL(BellaDatiで作成されたテーブルはカスタムレイアウトでレンダリングされます)にリダイレクトされます。

Image Added

拡張機能はここでダウンロードすることができます。

下記のパラメータで拡張機能を設定することができます:

tableViewId: カスタムレンダラでレンダリング対象ビューのIDを定義します。

indexOfColumnWithLabel: ラベルとして表示される行のインデックス(ソーステーブルの先頭行のインデックスは0です。)

indexOfColumnWithLink: ラベルとして使用されるコラムのインデックス(ソーステーブルの先頭行のインデックスは0です。)

レポートにリンク付きのカスタムテーブルを表示できるように、カスタムコンテンツビューを作成し、htmlに切り替えて、下記のコードを使用する必要があります。

Code Block
 <iframe id="tableExtension" src="https://service.belladati.com/en/extension/detail/29"></iframe>
//source of the iFrame should be replaced by the link to your extension
<script>
var iframe = document.getElementById("tableExtension");
// get view container
var viewContainer = $(iframe).parents('div.t-bdlayout-content');
iframe.width = viewContainer.width();
iframe.height = viewContainer.height() - 90;
</script>

設定を保存した後に、テーブルはレンダリングされます。