GuiGridListAddRow: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__  
{{Client function}}
This function is used to add rows to GUI grid lists
__NOTOC__
This function is used to add rows to grid lists.


==Syntax==  
==Syntax==  
Line 8: Line 9:


===Required Arguments===  
===Required Arguments===  
*'''gridList:''' The GUI grid list element you want to add a row to
*'''gridList:''' The grid list you want to add a row to


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


==Example==  
==Example==  
This example creates a player list on the right of the screen and fills it
This example creates a player list on the right side of the screen and fills it with the names of the connected players.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function createPlayerList ()
function createPlayerList ()
--Create the grid list element
-- Create the grid list
local playerList = guiCreateGridList ( 0.80, 0.10, 0.15, 0.60, true )
local playerList = guiCreateGridList ( 0.80, 0.10, 0.15, 0.60, true )
--Create a players column in the list
-- Create a 'players' column in the list
local column = guiGridListAddColumn( playerList, "Player", 0.85 )
local column = guiGridListAddColumn( playerList, "Player", 0.85 )
if ( column ) then --If the column has been created, fill it with players
if ( column ) then -- If the column has been created, fill it with players
for id, player in ipairs(getElementsByType("player")) do
for id, playeritem in ipairs(getElementsByType("player")) do
local row = guiGridListAddRow ( playerList )
local row = guiGridListAddRow ( playerList )
guiGridListSetItemText ( playerList, row, column, getPlayerName ( player ), false, false )
guiGridListSetItemText ( playerList, row, column, getPlayerName ( playeritem ), false, false )
end
end
end
end

Revision as of 15:10, 18 August 2007

This function is used to add rows to grid lists.

Syntax

int guiGridListAddRow ( element gridList )

Required Arguments

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

Returns

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

Example

This example creates a player list on the right side of the screen and fills it with the names of the connected players.

function createPlayerList ()
	-- Create the grid list
	local playerList = guiCreateGridList ( 0.80, 0.10, 0.15, 0.60, true )
	-- Create a 'players' column in the list
	local column = guiGridListAddColumn( playerList, "Player", 0.85 )
	if ( column ) then -- If the column has been created, fill it with players
		for id, playeritem in ipairs(getElementsByType("player")) do
			local row = guiGridListAddRow ( playerList )
			guiGridListSetItemText ( playerList, row, column, getPlayerName ( playeritem ), false, false )
		end
	end
end

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows