DgsGridListAddRow

From Multi Theft Auto: Wiki

Adds a row to a grid list, and optionally add simple text items with your rows. Use dgsGridListSetItemText to add row headers.

Syntax

int dgsGridListAddRow ( element gridList [,int pos, int/string itemText1, int/string itemText2, ...] )

Required Arguments

  • gridList: The grid list you want to add a row to.

Optional Arguments

  • pos: Row ID of the row you want to insert the new row at (different from guiGridListInsertRowAfter).
  • itemText1: The text for the first column item in the row. Either a string or a number can be passed.
  • itemText2: The text for the second column item in the row. Either a string or a number can be passed.
  • ...: Item text for any other columns

Returns

Returns the row id if it has been created, false otherwise.

Example

DGS = exports.dgs
function createPlayerList ()
	--Create the grid list element
	local playerList = DGS:dgsCreateGridList ( 0.80, 0.10, 0.15, 0.60, true )
	--Create a players column in the list
	local column = DGS:dgsGridListAddColumn( playerList, "Player", 0.85 )
	if ( column ) then --If the column has been created, fill it with players
		for id, player in ipairs(getElementsByType("player")) do
			local row = DGS:dgsGridListAddRow ( playerList )
			DGS:dgsGridListSetItemText ( playerList, row, column, getPlayerName ( player ) )
		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