widget.Table
import "fyne.io/fyne/v2/widget"
Usage
type Table
type Table struct {
BaseWidget
Length func() (int, int) `json:"-"`
CreateCell func() fyne.CanvasObject `json:"-"`
UpdateCell func(id TableCellID, template fyne.CanvasObject) `json:"-"`
OnSelected func(id TableCellID) `json:"-"`
OnUnselected func(id TableCellID) `json:"-"`
}
Table widget is a grid of items that can be scrolled and a cell selected. Its performance is provided by caching cell templates created with CreateCell and re-using them with UpdateCell. The size of the content rows/columns is returned by the Length callback.
1.4
func NewTable
func NewTable(length func() (int, int), create func() fyne.CanvasObject, update func(TableCellID, fyne.CanvasObject)) *Table
NewTable returns a new performant table widget defined by the passed functions. The first returns the data size in rows and columns, second parameter is a function that returns cell template objects that can be cached and the third is used to apply data at specified data location to the passed template CanvasObject.
1.4
func (*Table) CreateRenderer
func (t *Table) CreateRenderer() fyne.WidgetRenderer
CreateRenderer returns a new renderer for the table.
fyne.Widget
func (*Table) ScrollTo
func (t *Table) ScrollTo(id TableCellID)
ScrollTo will scroll to the given cell without changing the selection. Attempting to scroll beyond the limits of the table will scroll to the edge of the table instead.
2.1
func (*Table) ScrollToBottom
func (t *Table) ScrollToBottom()
ScrollToBottom scrolls to the last row in the table
2.1
func (*Table) ScrollToLeading
func (t *Table) ScrollToLeading()
ScrollToLeading scrolls horizontally to the leading edge of the table
2.1
func (*Table) ScrollToTop
func (t *Table) ScrollToTop()
ScrollToTop scrolls to the first row in the table
2.1
func (*Table) ScrollToTrailing
func (t *Table) ScrollToTrailing()
ScrollToTrailing scrolls horizontally to the trailing edge of the table
2.1
func (*Table) Select
func (t *Table) Select(id TableCellID)
Select will mark the specified cell as selected.
func (*Table) SetColumnWidth
func (t *Table) SetColumnWidth(id int, width float32)
SetColumnWidth supports changing the width of the specified column. Columns normally take the width of the template cell returned from the CreateCell callback. The width parameter uses the same units as a fyne.Size type and refers to the internal content width not including the divider size.
1.4.1
func (*Table) SetRowHeight
func (t *Table) SetRowHeight(id int, height float32)
SetRowHeight supports changing the height of the specified row. Rows normally take the height of the template cell returned from the CreateCell callback. The height parameter uses the same units as a fyne.Size type and refers to the internal content height not including the divider size.
2.3
func (*Table) Unselect
func (t *Table) Unselect(id TableCellID)
Unselect will mark the cell provided by id as unselected.
func (*Table) UnselectAll
func (t *Table) UnselectAll()
UnselectAll will mark all cells as unselected.
2.1