Hi Olaf,
A section can have any of the following that are used to filter the data being displayed.
- Search field
- Search bar
- Search panel
- query builder filter
- filter
- row filter
These are all concatenated and the filter used to refresh the data
There is no temporary table as Lianja uses Rushmore index optimizations on desktop and odata calls to the server in web and mobile apps.
In your desktop app if you want to browse a section in a popup window (see Lianja.showDialogForm() in web/mobile) you can have a section menu item that causes the following code to be executed.
Code:
local m_selected = select()
local m_tmpname = tmpnam()
select yourtable
copy to &m_tmpname
browse
select &m_selected
Bookmarks