B4J Question Setting B4XTable lblSort.TextColor - aeric    Jul 21, 2024 Error:
B4XTable1.lblSort.TextColor = xui.Color_Blue
Okay:
Sleep(0)
B4XTable1.lblSort.TextColor = xui.Color_Blue... B4A Question sort B4XTable - Blueforcer    Mar 3, 2019   tags: b4xtable is it possible to define a standart sort type?
For example i have a Column ID with unsorded Numbers, i want B4XTable sort it by default after create instead of manual clicking on it.
Would be awesome... B4A Question B4XTable sorting problem - Mahares (first post)    Aug 31, 2023 you without seeing code or project in this case Good thing you sorted it out. I also noticed you did... B4J Question [SOLVED]Issue while saving "sorted" B4XTable... - rbghongade (first post)    Apr 18, 2022 Dear Erel ,
Thanks for the immediate reply. Can you please give me the exact SQL query statement? I am unable to figure it out ?
OK got it working:
Dim rs As ResultSet = B4XTable1.sql1.ExecQuery("SELECT * FROM data ORDER BY c1")... B4A Question Sorting a B4XTable on a column number - DALB (first post)    Mar 19, 2023 i<>16 And i<>17) Then
B4XCol(i) = B4XTable1.AddColumn(ColName(i), B4XTable1... i=6 Or i=15 Or i=16 Or i=17) Then
B4XCol(i) = B4XTable1.AddColumn(ColName(i), B4XTable1... B4A Library [B4X] B4XTable - Cross platform, sortable, searchable, customizable table - Erel    Sep 21, 2025   (59 reactions)   tags: xuiTable, b4xtable, DataGrid, Table, B4X B4XTable B4XTable is a paged based table. The UI is made of a horizontal xCLV. The data is stored in an in... use? 1. Add a B4XTable with the designer. 2. Add the columns: B4XTable1.AddColumn("US County...(ColumnId) Log(cell) End Sub B4XTable.GetRow returns a Map with the row data. The row values are mapped to the columns ids. Tip: You can access the visible row ids with B4XTable.VisibleRowIds. Customization Many things can be customized. Will start with a few simple things. B4XTable.AddColumn... B4A Question [Solved]How to sort B4XTable based on a column - Mikelgiles (first post)    Oct 3, 2019   (1 reaction) As B4XTableColumn = B4XTable1.GetColumn("Name")
If column.InternalSortMode = "ASC"...= "ASC"
End If
B4XTable1.Refresh
End Sub
Thank you mangojack. It works perfectly... B4J Question [B4XTable] How To Sort Multiple Columns - Erel (first post)    Dec 14, 2021 You will need to do some work for this. It might be easier to modify B4XTable sort and implement it in the class directly.
And is it possible to put the sort direction arrow back up as well? If... B4J Question How to emulate B4XTable column title click to sort its content ascending or descending using code? [Solved] - Erel (first post)    Mar 18, 2021   (3 reactions)
'SortMode - ASC or DESC
Sub Sort (Table As B4XTable, Column As B4XTableColumn, SortMode As String)
For Each c As B4XTableColumn In Table.Columns
If c = Column Then... B4A Library [B4X] B4XTableSelections - extended selection modes for B4XTable - Erel    Jan 13, 2022   (19 reactions) https://www.b4x.com/basic4android/images/java_pBh7rhOHqQ.png B4XTableSelections extends B4XTable.... MULTIPLE_LINES - selection of multiple lines Usage: Initialize B4XTableSelections and set the mode: XSelections.Initialize(B4XTable1) XSelections.Mode = XSelections.MODE_SINGLE_CELL_TEMP Implement these two events like this: Sub B4XTable1_CellClicked (ColumnId As String, RowId As Long) XSelections.CellClicked(ColumnId, RowId) End Sub Sub B4XTable1_DataUpdated XSelections.Refresh End... Page: 1   2   3   4   5   6   7   |