Page 3 of 3

Re: XBrowse 16.04 : Gets in Header Bar

PostPosted: Sat Jul 21, 2018 3:58 am
by fraxzi
nageswaragunupudi wrote:lGetBar works for all datasources. It is independent of the datasource.


ooops, when :lIncrFilter := .T., the GetBar doesn't show. Normal?

I'd like to enable lSeekBar when user's select combobox option to search and to filter using incremental filtering displaying the :cSeek to seekbar/getbar

:?:

Re: XBrowse 16.04 : Gets in Header Bar

PostPosted: Sat Jul 21, 2018 8:03 am
by fraxzi
Mr. Rao,

How to toggle lSeekBar and lGetBar?

:?:

Re: XBrowse 16.04 : Gets in Header Bar

PostPosted: Sat Jul 21, 2018 8:23 am
by fraxzi
fraxzi wrote:Mr. Rao,

How to toggle lSeekBar and lGetBar?

:?:



Mr. Rao,

This doesn't toggle:
Code: Select all  Expand view

...
        @1, 210 COMBOBOX aGets[1] VAR aVars[1] PIXEL OF oBar;
                SIZE 100, 100 DROPWIDTH 150 UPDATE STYLE CBS_DROPDOWNLIST;
                ITEMS {'Search','Filter'};
                ON CHANGE ( oBrw:lSeekBar := Self:nAt == 1,;
                            oBrw:lGetBar := Self:nAt == 2,;
                            oBrw:Refresh() )
...
 



this toggles BUT Overlapped
Code: Select all  Expand view

...
        @1, 210 COMBOBOX aGets[1] VAR aVars[1] PIXEL OF oBar;
                SIZE 100, 100 DROPWIDTH 150 UPDATE STYLE CBS_DROPDOWNLIST;
                ITEMS {'Search','Filter'};
                ON CHANGE ( oBrw:lSeekBar := iif(Self:nAt == 1, .T., NIL),;
                            oBrw:lGetBar := iif(Self:nAt == 2, .T., NIL),;
                            oBrw:Refresh() )
...
 

Re: XBrowse 16.04 : Gets in Header Bar

PostPosted: Mon Jul 23, 2018 7:48 am
by nageswaragunupudi
Toggling between lGetBar and lSeekBar is not possible in the current versions.
We will provide for this in version 18.06.

Note:
Setting lGetBar or lSeekBar as .T. automatically sets the other as .F.

Re: XBrowse 16.04 : Gets in Header Bar

PostPosted: Tue Jul 24, 2018 12:08 am
by fraxzi
nageswaragunupudi wrote:Toggling between lGetBar and lSeekBar is not possible in the current versions.
We will provide for this in version 18.06.

Note:
Setting lGetBar or lSeekBar as .T. automatically sets the other as .F.



Copy Sir. :wink: