Changing the description in DataTable is shown by the library author like this:
https://datatables.net/reference/option/language.search
new DataTable('#myTable', {
language: {
search: 'Filter records:'
}
});
Can this be done in AppStudio?
Changing the description in DataTable is shown by the library author like this:
https://datatables.net/reference/option/language.search
new DataTable('#myTable', {
language: {
search: 'Filter records:'
}
});
Can this be done in AppStudio?
Yes: Add this line just before you call build:
DataTable1.settings.language = {search: "Filter records"};
DataTable1.build();
(This will also work on other settings)