This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: [1]
1
Web Server - Ask For Help / Re: Search button issues
« on: December 06, 2007, 12:15:16 PM »
...sent...
2
Web Server - Ask For Help / Re: Search button issues
« on: November 30, 2007, 08:29:19 AM »
Workaround for 1a:
! Start of "After Session Variables"
if loc:sortfield <> ''
IF loc:SortField<>p_web._FirstField(loc:vOrder)
! Copy and paste all code after " if p_web.GetValue('Refresh') = 'sort' or loc:sortfield = ''" above
loc:SortField = p_web._FirstField(loc:vOrder)
p_web.SetSessionValue('pgPasswordsBrowseControl_sortfield',loc:sortfield)
(etc)
! Start of "After Session Variables"
if loc:sortfield <> ''
IF loc:SortField<>p_web._FirstField(loc:vOrder)
! Copy and paste all code after " if p_web.GetValue('Refresh') = 'sort' or loc:sortfield = ''" above
loc:SortField = p_web._FirstField(loc:vOrder)
p_web.SetSessionValue('pgPasswordsBrowseControl_sortfield',loc:sortfield)
(etc)
3
Web Server - Ask For Help / Search button issues
« on: November 30, 2007, 07:56:50 AM »
I've received the following feedback from a client, and confirmed that 1 and 1c are issues. 1b is obviously a suggestion, not a bug. :-)
1- Search function in the web interface (very important, blocking point): currently, once a column has been selected for a search, you can't switch to another column without logging out. That's definitely an issue right now.
1b- As an aside, a default global search function (that searches all columns) would be an interesting addition as well.
1c- As a bonus, when data is entered in the Search field, would it be possible to have the focus automatically moved to the Search button? Users tend to hit "Enter" after entering a search string, and right now, this triggers the opening of a
password entry, not the search.
1- Search function in the web interface (very important, blocking point): currently, once a column has been selected for a search, you can't switch to another column without logging out. That's definitely an issue right now.
1b- As an aside, a default global search function (that searches all columns) would be an interesting addition as well.
1c- As a bonus, when data is entered in the Search field, would it be possible to have the focus automatically moved to the Search button? Users tend to hit "Enter" after entering a search string, and right now, this triggers the opening of a
password entry, not the search.
4
Web Server - Ask For Help / Re: Optionally ask for input before proceeding to the view/change form
« on: October 24, 2007, 07:06:55 AM »
Thanks!
5
Web Server - Ask For Help / Optionally ask for input before proceeding to the view/change form
« on: October 23, 2007, 01:07:37 PM »
When a user wishes to view or change a record with a certain criteria (eg. FIL:Level>5000 AND GLO:AskIfAccessed=True), I want to ask them the reason they are accessing it (before they access it), and store the result in an audit log. I think that the form to form example is similar to what I want, but the first form should always be an insert (into the audit log file) or skipped, while the second form (the main record) should be a change or view.
What is the easiest way to do this?
What is the easiest way to do this?
Pages: [1]