• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

[SOLVED] Session Lock Timeout?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • [SOLVED] Session Lock Timeout?

    Is there a way to override and/or ignore the session lock timeout value on a per user basis? We have a dashboard app that is displayed on large screen TV monitors throughout the plants. The app auto-refreshes the grids but it appears that this doesn't effect the session lock variable.

  • #2
    You could reset the portals lock timer on each load of the grids store. Below is an example of a load listener...

    Code:
                load  : function(){
                    parent.Portal.getApplication().fireEvent('resetlocktimer');
                }

    Comment

    Working...
    X