Search found 1883 matches: row

Return to advanced search

Re: To nages : modify of a xbrowse

... := EDIT_LISTBOX :aCols[1]:aEditListTxt := acOperators I wish only it can run only when the oBrwFilter:nArrayAt not is 1 ( first row)
by Silvio.Falconi
Thu May 09, 2024 8:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To nages : modify of a xbrowse
Replies: 4
Views: 117

Dynamic Table Filter Control

... { display: flex; gap: 10px; } </style> </head> <body> <div class="container mt-5"> <div class="row"> <div class="col-md-12"> <h2 class="mb-4">Tabellenhöhe anpassen</h2> <button id="increase" ...
by Otto
Fri May 03, 2024 4:42 pm
 
Forum: mod_harbour
Topic: Dynamic Table Filter Control
Replies: 0
Views: 39

Re: xBrowse.Row.Disable

Maestro Antonio, lo ideal es que para las próximas, versiones de FWH
se contemple un metodo:

Code: Select all  Expand view

oBrw:aArrayData[nRow]:Disabled() (color gris)
 


"el pedir no empobrece"

:D :D :D
by sysctrl2
Thu May 02, 2024 6:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse.Row.Disable
Replies: 4
Views: 169

Re: xBrowse.Row.Disable

Francisco, si me sirvió, el check solo debe de funcionar cuando es .f. saludos :D #include "fivewin.ch"Function LineaNoEditable()   local oDlg, oBrw, n   LOCAL aArray := { {.f.,5,8,4,5,6,7} ,;      {.f.,4,9,4,5,6,0} ,;&nbs...
by sysctrl2
Wed May 01, 2024 4:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse.Row.Disable
Replies: 4
Views: 169

Re: xBrowse.Row.Disable

Gracias Francisco, voy a probar :shock:
by sysctrl2
Wed May 01, 2024 3:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse.Row.Disable
Replies: 4
Views: 169

Re: xBrowse.Row.Disable

Cesar, creo que este codigo puede ayudarte. Function LineaNoEditable()local oDlg, oBrw, nLOCAL aArray := { {1,5,8,4,5,6,7} ,;                  {1,4,9,4,5,6,0} ,;                 ...
by FranciscoA
Wed May 01, 2024 2:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse.Row.Disable
Replies: 4
Views: 169

xBrowse.Row.Disable

Señores del foro,

se puede poner disabled todo un renglón en xBrowse ?
algo asi como readonly :roll:
saludos :D

Image
by sysctrl2
Tue Apr 30, 2024 10:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse.Row.Disable
Replies: 4
Views: 169

Re: SetMultiSelectCol() on line

... _LREADONLY( 0 ) Called from: xbmulsel.prg => (b)MAIN( 38 ) Maybe I did not say it clear enough I would like the procedure to check whether xbrowse has/does not have :SetMultiSelectCol() if it does not have the :SetMultiSelectCol() the procedure must create the :SetMultiSelectCol() as the ...
by Silvio.Falconi
Tue Apr 23, 2024 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 223

Re: xbrowse problem with :bLClicked

... I see what's going on here. You're experiencing some issues with the selection and deselection of records in your xbrowse, specifically when using the spacebar to toggle selection. Let's break it down and see if we can fix this. First, let's analyze the `:bLClicked` ...
by Antonio Linares
Mon Apr 22, 2024 5:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 124

xbrowse problem with :bLClicked

i have a xbrowse with :SetMultiSelectCol() with bRClicked I associated a menupopup with :bLClicked I click on a row and select it I made the same with :bKeyChar ( space button)   :bLClicked := { |r,c,f,oBrw| if( ...
by Silvio.Falconi
Sun Apr 21, 2024 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 124

SetMultiSelectCol() on line

I have an xbrowse created with an array without the :SetMultiSelectCol() and I have the ability to display a menupopup like this MENU oMenu POPUP if oBrw:IsSelectedRow() MENUITEM "Deselect the current row" action DeSelect_One_array(oBrw) ...
by Silvio.Falconi
Sat Apr 13, 2024 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 223

Re: Problem with valid email refresh btnbmp

Karinha,
For me it's no good
I have a dialog with many get , how row of source I must make for insert your source ?

look the sample's Nages , why here not run ?
by Silvio.Falconi
Mon Apr 08, 2024 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2554

Re: xbrowse SelectRow method

Or, if we want to deselect a specific row number, which is not the current row, we can do like this. if ( nAt := AScan( oBrw:aSelected, nRecNo ) ) > 0HB_ADel( oBrw:aSelected, nAt, .t. )endifoBrw:Refresh() ...
by Silvio.Falconi
Mon Apr 01, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 708

Re: xbrowse SelectRow method

Or, if we want to deselect a specific row number, which is not the current row, we can do like this.
Code: Select all  Expand view
if ( nAt := AScan( oBrw:aSelected, nRecNo ) ) > 0
HB_ADel( oBrw:aSelected, nAt, .t. )
endif
oBrw:Refresh()

We do not recommend this, but this is possible.
by nageswaragunupudi
Sun Mar 31, 2024 5:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 708

Re: xbrowse SelectRow method

oBrw:SelectRow( 2 ) toggles selection of the current row in focus.
by nageswaragunupudi
Sun Mar 31, 2024 5:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 708
Next

Return to advanced search