B4A Library [B4X] B4XTable - Cross platform, sortable, searchable, customizable table - Erel    Feb 08, 2024   (58 reactions) Dim rs As ResultSet = B4XTable1.sql1.ExecQuery2(o(0), o(1))
Do While rs.NextRow
Log(rs.GetString(B4XTable1.GetColumn("State").SQLID))
Loop
rs.Close
V1.10 - Fixes a bug with cell clicks on empty tables.
V1.09 - The navigation buttons layout was fine tuned to be able to show three digits.
V1.08 - B4A Question B4XTable - Reduce page navigation size and Font size and width of column header - Mahares (first post)    Aug 11, 2022   (1 reaction) You can change the header font and height using:
B4XTable1.HeaderFont = xui.CreateDefaultBoldFont(20)
B4XTable1.HeadersHeight =20dip
the above two lines must be placed before you assign the columns data which is:
B4XTable1.AddColumn("Name", B4XTable1.COLUMN_TYPE_TEXT).Width=100dip
The above line B4A Question B4XTable question - Erel (first post)    Oct 30, 2022   (1 reaction) The designer header color sets the background of the column headers.
You can change the color of the top panel with:
Sleep(0) 'this is required to let B4XTable load its layout.
B4XTable1.pnlHeader.Color = B4XTable1.HeaderColor 'or any other value
/code] B4A Question [SOLVED] B4XTable - "Custom layouts" of headers - LucaMs    Dec 21, 2023 The worst thing is that when you click on it, the project crashes, because Row in this line (B4XTable source code) do not contains a number:
Private Sub CellClicked (pnl As B4XView, LongClicked As Boolean)
If DateTime.Now < LastCellClickEvent + 20 Then Return
LastCellClickEvent = DateTime.N B4J Question B4XTable change size of header information for big numbers - Erel (first post)    Jan 06, 2022   (1 reaction) Private Sub B4XPage_Created (Root1 As B4XView)
Root = Root1
Root.LoadLayout("MainPage")
Dim data As List
data.Initialize
B4XTable1.AddColumn("col1", B4XTable1.COLUMN_TYPE_NUMBERS)
B4XTable1.AddColumn("col2", B4XTable1.COLUMN_TYPE_NUMBERS)
For i = 1 To 150000
data. B4J Question B4XTable header gradient color - Erel (first post)    Oct 11, 2020   (1 reaction) 101280
There are all kinds of ways to do it. A simple B4J only solution:
1. Add an invisible pane with the designer and set its background to GradientDrawable. Set the orientation to TOP_BOTTOM.
2.
For Each col As B4XTableColumn In B4XTable1.VisibleColumns
Dim p As B4XView = col.CellsLayout B4A Question B4XTable - Row header and running Nr - Mahares (first post)    Jun 10, 2020   (1 reaction) 1. You are posting in the wrong forum. You should post in the questions forum.
2. You do not tell us what Nr is.
3. You did not tell us what your solution is to help the others. I use B4XTable. I like to learn more about it. B4J Question B4XTable - Hide columns. - LucaMs    Dec 25, 2021 Trying to hide the columns with "even header".
(Project attached)
123412123413 B4A Question Font size - Mahares (first post)    Nov 03, 2021   (1 reaction) They need to be placed in the correct place in the code. I tested them on my B4XTble and they work. The header code has to be before you assign the B4XTable columns, for the search it is after. If you want to attach a project, provided no sensitive data. some of the members including myself will ta B4A Question how to customize the header of the b4xtable - Mahares (first post)    May 02, 2020   (3 reactions) To change the arrows colors:
Sleep(0) '
B4XTable1.lblFromTo.TextColor= Colors.Cyan 'exple: 1 to 18
B4XTable1.lblNumber.TextColor=Colors.Red '1 the page numbers in red. you can also use XUI colors
B4XTable1.ArrowsEnabledColor=Colors.green 'enable arrow color
B4XTable1.ArrowsDi Page: 1   2   3   4   5   6   7   Powered by ColBERT |