B4J Tutorial TableView Tutorial - Erel    Jun 7, 2017   (14 reactions)   tags: B4J, TableView TableView is useful to show data in a tabular view. The data is held in a List. Each item in... to fill a table with three columns with some random data we can use this code: TableView1.SetColumns... 1000 Dim Row() As Object = Array ("a", "b", "c") TableView1.Items.Add(Row) Next TableView can also accept Nodes as items. In this case the nodes will be displayed inside the cells. By adding nodes as items you can fully customize the TableView appearance. Another... B4A Library [Class] TableView - Supports tables of any size - Erel    Sep 25, 2013   (8 reactions) An improved version of this class is available here: http://www.b4x.com/forum/additional-libraries-classes-official-updates/30649-class-flexible-table.html The Table class allows you to show tables of any sizes. The views (labels) are reused to avoid creating many views. With the help of StringUtils the table can be loaded and saved to a CSV file. It shouldn't be difficult to show SQL tables using DBUtils.ExecuteMemoryTable. http://www.b4x.com/basic4android/images/SS-2012-07-04_10.38.01... B4i Tutorial TableView with custom items - Erel    Feb 26, 2015   (3 reactions) iTableView v1.20 adds support for custom items. Each TableCell includes a CustomView property. You can set a Panel with views to this property and the panel will be added to the cell. 32518 It is quite similar to CustomListView class. However TableView is more powerful. Do note that when you create custom views your TableView will be limited to about 1000 items as each cell holds its own custom views (the standard cells are reused and therefore support any number of cells). The attached... Share My Creation TableView: Magical Inline Editing - Mashiane    May 3, 2022   (6 reactions)   tags: table edit, Mashy , I have a button to add new records to the TableView, this calls... 'add an empty row to the table...,filePath,filePath,opt,rh,True) Example based on the b4xgoodies MashOverViewCreator. listings 66162 15...) MainForm = Form1 MainForm.RootPane.LoadLayout("vTableEdit") 'Load the layout file. MainForm.Title = "My Contacts" PrepareDB 'setup the table fields..., StackTrace As String) As Boolean Return True End Sub 'add an empty row to the table... B4J Question Autoscroll horrizontal bar in a tableview - micro    Nov 14, 2018 Hi to all It's possible get a horizontal bar autoscroll in a tableview when I move from one cell to another horizontally with the TAB key and these are not visible? Thanks... B4i Tutorial TableView - "B4i ListView" - Erel    Mar 8, 2015   (11 reactions) The TableView view from iTableView library wraps the native UITableView control. This control is similar to B4A ListView though it is more powerful. Do not confuse TableView with Table class which is a custom multicolumn table: https://www.b4x.com/android/forum/threads/class-table.46567/ TableView... you can use CustomListView class. TableView holds one or more sections. Each section holds a list... with TableView.AddSection. Adding cells is done with AddSingleLine or AddTwoLines methods. Note... B4i Tutorial TableView - Action (swipe) Buttons - Erel    Dec 6, 2015   (4 reactions) TableView2 library extends TableView and adds support for action buttons. The reason for the new library is that TableView2 requires iOS 8+. You can download it here: https://www.b4x.com/android... As Page Private TableView1 As TableView End Sub Private Sub Application_Start (Nav..." Page1.RootPanel.Color = Colors.White NavControl.ShowPage(Page1) TableView1.Initialize("TableView1", False) For i = 1 To 1000 Dim tc As TableCell = TableView1... B4i Question Tableview animation - ilan    May 10, 2020 hi how can i animate the item when i reload the tableview like it is done in the settings app of ios. where all items slide from right to left/ left to right... B4J Question TableView cell alignment and color - BPak    Dec 6, 2013   tags: TableView Have built a program and managed to center all the cells of the TableView. .table-column .cell { -fx-alignment: CENTER; } However, I would like to be able to set the columns to different alignment and colors. My search has not found anything other than Cell Factories or something like that used in NetBeans?? Anyone have any CSS that might work out this problem for me?... B4J Question TableView Header color - imbault    Feb 27, 2018 Hi, Does anyone knows how to setup TableView header color ? (TextColor and BackGround) I'd like this : 65011 Thanks a lot... Page: 1   2   3   4   5   6   7   |