DgsGridListAddColumn

From Multi Theft Auto: Wiki

This function is used to create columns in grid lists.

Syntax

int dgsGridListAddColumn ( element gridList, string title, float width [, int insertPosition = nil, string horizontalAlign = "left" ] )

Required Arguments

  • gridList: The grid list you want to add a column to
  • title: Title of the column
  • width: Column width, relative to the grid list width

Optional Arguments

  • insertPosition: The position you want to insert to, after the last column by default.
  • horizontalAlign: Column text horizontal alignment ( also affects row text ).

Returns

Returns the column id if it was created, false otherwise.

Example

Click to collapse [-]
Client

Example 1: This example creates a player list on the right side of the screen and fills it with the currently connected players.

DGS = exports.dgs
function clientsideResourceStart ()
	local playerList = DGS:dgsCreateGridList ( 0.80, 0.10, 0.15, 0.60, true ) -- Create the grid list
	local column = DGS:dgsGridListAddColumn( playerList, "Player", 0.85 ) -- Create a 'players' column in the list
	if ( column ) then -- If the column was successfully created
		for id, playeritem in ipairs(getElementsByType("player")) do 
		--Loop through all the players, adding them to the table
			local row = DGS:dgsGridListAddRow ( playerList )
			DGS:dgsGridListSetItemText ( playerList, row, column, getPlayerName ( playeritem ) )
		end
	end
end
addEventHandler ( "onClientResourceStart", resourceRoot, clientsideResourceStart )
Click to collapse [-]
Client

Example 2:

DGS = exports.dgs
gridlist  = DGS:dgsCreateGridList (367, 120, 362, 489, false)
addCommandHandler("add",function (commandName,arg)
	if arg ~= "" then 
		DGS:dgsGridListAddColumn(gridlist,arg, 0.5)    
	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