DgsGridListGetSelectedItem

From Multi Theft Auto: Wiki

This function returns the row and colum indexes of the selected item in a grid list.

Syntax

int dgsGridListGetSelectedItem ( element gridList )

Required Arguments

  • gridList: the grid list you want to know the selected row index of

Returns

Returns the row of the selected item if the specified grid list is valid and has a selected item, (-1) if no item is selected, false otherwise.

Example

DGS = exports.dgs

local GridList = DGS:dgsCreateGridList ( 0.80, 0.10, 0.15, 0.60, true )
local column = DGS:dgsGridListAddColumn( GridList, "test", 0.85 )
local row = DGS:dgsGridListAddRow ( GridList )
DGS:dgsGridListSetItemText (GridList, row, column, "1" )

addEventHandler ( "onDgsMouseClick", root, function ( button, state  )
	if source == GridList then 
		local Selected = DGS:dgsGridListGetSelectedItem(GridList)
		if Selected ~= -1 then 
			local output= DGS:dgsGridListGetItemText(GridList,Selected,column)
			outputChatBox(""..output.."",255,0,0)
		end
	end
end )

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