Skip to content

Index

Get variable for Table View

1
2
3
4
5
6
// important: 
// wait for document-ready-event

jQuery(document).ready(function() {
    var tv = AppGiniHelper.tv;
});

or

1
2
3
4
5
6
// important: 
// wait for document-ready-event

jQuery(function() {
    var tv = AppGiniHelper.tv;
});

See also