DgsGridListClearRow: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
{{Client function}}
{{Client function}}
__NOTOC__
__NOTOC__
This function clears all the data from a dgs grid list.
This function clears all the row data from a dgs grid list.


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsGridListClear ( element gridList )
bool dgsGridListClearRow ( element gridList )
</syntaxhighlight>  
</syntaxhighlight>  


Line 26: Line 26:
DGS:dgsGridListSetItemText ( testList, guiGridListAddRow ( testList ), column, "World" )
DGS:dgsGridListSetItemText ( testList, guiGridListAddRow ( testList ), column, "World" )
         -- Set a timer to call the dgsGridListClear function to clear the grid list items in 5 seconds
         -- Set a timer to call the dgsGridListClear function to clear the grid list items in 5 seconds
setTimer ( DGS:dgsGridListClear, 5000, 1, testList )  
setTimer ( DGS:dgsGridListClearRow, 5000, 1, testList )  
end
end
addEventHandler ( "onClientResourceStart", resourceRoot, clientsideResourceStart )</syntaxhighlight>
addEventHandler ( "onClientResourceStart", resourceRoot, clientsideResourceStart )</syntaxhighlight>

Revision as of 03:13, 24 March 2018

This function clears all the row data from a dgs grid list.

Syntax

bool dgsGridListClearRow ( element gridList )

Required Arguments

  • gridList: The dgs grid list element to be cleared

Returns

Returns true if the grid list element is valid and has been cleared successfully, false otherwise.

Example

This example creates a grid list, puts 2 items in to display the text "Hello" and "world" and clears the grid list after 5 seconds.

DGS = exports.dgs
function clientsideResourceStart ()
        -- Create the grid list element
	local testList = DGS:dgsCreateGridList ( 0.45, 0.45, 0.15, 0.15, true ) 
        -- Create a column in the list and add 2 rows displaying "Hello" text and "world" text
	local column = DGS:dgsGridListAddColumn( testList, "test", 0.85 ) 
	DGS:dgsGridListSetItemText ( testList, guiGridListAddRow ( testList ), column, "Hello" )
	DGS:dgsGridListSetItemText ( testList, guiGridListAddRow ( testList ), column, "World" )
        -- Set a timer to call the dgsGridListClear function to clear the grid list items in 5 seconds
	setTimer ( DGS:dgsGridListClearRow, 5000, 1, testList ) 
end
addEventHandler ( "onClientResourceStart", resourceRoot, clientsideResourceStart )

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips