Table View

Important notice since version 2020/10

From version 2020/10 on we recommend using the following syntax for getting a table view handle:

Recommended

// get handle to AppGini Table View
// recommended syntax since version 2020/10
jQuery(document).ready(function() {
  var tv = AppGiniHelper.TV;
  // your code here
});

Deprecated

// get handle to AppGini Table View
// deprecated since version 2020/10
jQuery(document).ready(function() {
  var tv = new AppGiniTableView();
  // your code here
});

The deprecated syntax will still work, so you don't have to update your scripts. But we recommend using the new syntax instead.

Table View Features

Set title (Table View)

Set the title (text or html) of a Table View

Read more ...

Add text/html to title (Table View)

Add text or html to the default title of a Table View

Read more ...

AddButtonOpen (Table View)

Add a link-button which opens up the record itself on every row in Table View

Read more ...

Set Column Width (Table View)

Change the width of columns in Table View by code

Read more ...

Add Button (Table View)

Add a button to every row of table view which will execute any custom javasript function

Read more ...