DgsGridListSetSelectedItems

From Multi Theft Auto: Wiki

This function selects multipile items in the specific dgs grid list.

Syntax

bool dgsGridListSetSelectedItems ( element gridList , table items )

Required Arguments

  • gridList: The dgs grid list which you want to select items in.
  • items: The item table in this format ( the same as cegui's ) :
table = {
    [1] = {
        ["column"], -- has the first selected item's column ID
        ["row"] -- has the first selected item's row ID
    },
    [2] = {
        ["column"],-- has the second selected item's column ID
        ["row"] -- has the second selected item's row ID
    },
    ...
}

Returns

Returns true if successful, false otherwise.

Example

DGS = exports.dgs
-- This example creates a grid list of all players and select an item at row 1 column 1.
playerWindow = DGS:dgsCreateWindow(526, 230, 291, 284, "", false)
gridlistPlayers = DGS:dgsCreateGridList(9, 23, 272, 201, false, playerWindow)
DGS:dgsGridListAddColumn(gridlistPlayers, "Players", 0.9)
DGS:dgsGridListSetSelectionMode(gridlistPlayers, 1) -- So can select many players
for _, players in ipairs(getElementsByType("player")) do 
	local row = DGS:dgsGridListAddRow(gridlistPlayers)
	DGS:dgsGridListSetItemText(gridlistPlayers, row, 1, getPlayerName(players))
end 
DGS:dgsGridListSetSelectedItems(gridlistPlayers,{
	{
		row = 1,
		column = 1
	},
})

See Also

Multi Language Supports

Animation

3D Interface

3D Text

Arrow List

Browser

Button

Check Box

Combo Box

Edit

Ellipse Detect Area

Detect Area

Grid List

Image

Memo

Label

Progress Bar

Radio Button

Scroll Bar

Scroll Pane

Switch Button

Tab Panel

Window

Plugin

Media Browser

Rounded Rectangle

Color Picker

Blur Box

Effect 3D