NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: Mike McLoughlin on December 08, 2009, 04:26:31 AM

Title: Filter lost by nav keys?
Post by: Mike McLoughlin on December 08, 2009, 04:26:31 AM
I use a filter in a browse called from a form

'lea:assessor = ''' & p_web.GSV('Loc:assessor') & ''' '

It works OK the first time but as soon as I press one of the navigation keys (Next etc) the filter is lost and p_web.GSV('Loc:assessor') returns an empty string.

Seems like somewhere the session  queue us being emptied??

Mike
Title: Re: Filter lost by nav keys?
Post by: Bruce on December 08, 2009, 07:41:16 AM
My guess is you're setting the Session Value of Loc:assessor somewhere.
Or it's being set for you - if you have defined this variable under the DATA button in the browse, try removing it from there.

Cheers
Bruce
Title: Re: Filter lost by nav keys?
Post by: Mike McLoughlin on December 08, 2009, 08:13:34 AM
Yes that was it - loc:assessor was defined in the calling form AND the filtered browse so it was conflicting with the sessionQ value.

thanks

Mike