Search found 145 matches

Search

by tpjctrl
Thu Jan 23, 2025 10:38 am
Forum: HowTos
Topic: AESRow - how to not run query on panel start
Replies: 7
Views: 6516

Re: AESRow - how to not run query on panel start

Thanks Leopold, what's the best practice for reloading an opened screen with a different filter configuration? modify the filter dp and then simply reload the module with the use of dollar params?

Regards,
Tom
by tpjctrl
Tue Dec 10, 2024 10:49 pm
Forum: HowTos
Topic: AESRow - how to not run query on panel start
Replies: 7
Views: 6516

Re: AESRow - how to not run query on panel start

Thanks Leopold, is the $param approach described somewhere in the documentation? or perhaps there's an example panel which covers how this is done?

Regards,
Tom
by tpjctrl
Thu Dec 05, 2024 11:45 pm
Forum: HowTos
Topic: AESRow - how to not run query on panel start
Replies: 7
Views: 6516

Re: AESRow - how to not run query on panel start

It's a legacy panel I've "adopted" and the "outside" controls are for filtering the contents displayed on the AESRow. There's a selector for various dist systems connected to the main system and that applies a dp name filter via these three lines: aes_doStop(_filterDP); dpSetCach...
by tpjctrl
Wed Dec 04, 2024 5:27 pm
Forum: HowTos
Topic: AESRow - how to not run query on panel start
Replies: 7
Views: 6516

AESRow - how to not run query on panel start

I have a panel which uses the AESRow panel ref and I'm having a hard time stopping it from running any queries on startup. I've traced the code in aes.ctl and it seems that when the table initialised it automatically generates a "settings change" trigger, which then causes a query to be ra...
by tpjctrl
Tue Mar 26, 2024 7:09 pm
Forum: HowTos
Topic: How to select shapes on a panel in runtime?
Replies: 4
Views: 4224

Re: How to select shapes on a panel in runtime?

I'll tag along here and ask a related question. Lets say I have a few rectangles on a panel, the panel has "Runtime Selection" enabled and each of the rectangles has "Selectable" set to true. I can get the list of selected rectangles using the "selection" method, but th...
by tpjctrl
Wed Jan 17, 2024 2:05 pm
Forum: Bugs / Problems
Topic: monitoring memory - panel vs dp values
Replies: 6
Views: 3183

Re: monitoring memory - panel vs dp values

Thanks, well I'll just stick to dividing by 1024 and blame the difference on something else :) I did take a screenshot of both the PARA and the monitoring panel side by side, so in theory changes should be registered on both at the same time.
by tpjctrl
Tue Jan 16, 2024 1:56 pm
Forum: Bugs / Problems
Topic: monitoring memory - panel vs dp values
Replies: 6
Views: 3183

Re: monitoring memory - panel vs dp values

Further to the above, it seems that the KB marked dpes like FreeKB, TotalKB etc. are actually KiB, as for most dps the /1024 calculation actually gives results closer to what is shown on the monitor panel, but there's still discrepancies: _MemoryCheck.AvailKB: 23287896KiB vs 22789MiB (monitor panel)...
by tpjctrl
Tue Jan 16, 2024 10:10 am
Forum: Bugs / Problems
Topic: monitoring memory - panel vs dp values
Replies: 6
Views: 3183

Re: monitoring memory - panel vs dp values

Thanks, I simply assumed it's MBs, not MiBs.
by tpjctrl
Mon Jan 15, 2024 6:44 pm
Forum: Bugs / Problems
Topic: monitoring memory - panel vs dp values
Replies: 6
Views: 3183

monitoring memory - panel vs dp values

Does anyone know why the Memory Monitoring panel shows values different to what is in the corresponding dps? for example: _MemoryCheck.AvailKB: 23287896 vs 22789MB (monitor panel) _MemoryCheck.AvailPerc: 81 vs 80.93% (monitor panel) _MemoryCheck.EmergencyKBLimit: 262144 vs 256MB (monitor panel) _Mem...
by tpjctrl
Fri Nov 10, 2023 4:53 pm
Forum: HowTos
Topic: panel ref loaded on a tab in a tab widget - how to get tab widget name inside panel ref?
Replies: 2
Views: 4225

panel ref loaded on a tab in a tab widget - how to get tab widget name inside panel ref?

I have a tab widget on which tabs are created automatically based on dps existing. When a tab is created, it is loaded with a panel ref using the "namedRegisterPanel" function. Is there a way to get the name of the tab widget from within the panel ref that is loaded in the tab? I can pass ...