Spanish B4XTable marcar fila con color (SOLUCIONADO)

benji

Active Member
Licensed User
Longtime User
Buenas tardes,
es posible en una B4XTable marcar una fila con un color, dependiendo del valor de una columna?

De antemano, muchas gracias.

Saludos.
 

TILogistic

Expert
Licensed User
Longtime User
ver:


 

josejad

Expert
Licensed User
Longtime User

benji

Active Member
Licensed User
Longtime User
Gracias, había buscado y por algún motivo (yo, lo mas probable) no las encontré antes. Gracias, las voy a probar.

Aqui lo dejo por si alguien le sirve...

Color linea B4xTable:
Sub B4XTable1_DataUpdated
    For i = 0 To B4XTable1.VisibleRowIds.Size - 1
        Dim RowId As Long = B4XTable1.VisibleRowIds.Get(i)
        If RowId > 0 Then
            'criteria
            Dim Value As Int = B4XTable1.GetRow(RowId).Get("Estado")
            If Value = 3 Then
                SetRowColor(i, xui.Color_Green)
                Continue
            End If
        End If
        If i Mod 2 = 0 Then
            SetRowColor(i, B4XTable1.EvenRowColor)
        Else
            SetRowColor(i, B4XTable1.OddRowColor)
        End If
    Next
End Sub

Sub SetRowColor (RowIndex As Int, Clr As Int)
    For Each c As B4XTableColumn In B4XTable1.VisibleColumns
        Dim pnl As B4XView = c.CellsLayouts.Get(RowIndex + 1) '+1 because of the header
        pnl.Color = Clr
    Next
End Sub
 
Last edited:
Top