DgsGridListSetMultiSelectionEnabled

From Multi Theft Auto: Wiki

This function changes the multi-selecting mode of the dgs grid list.

Syntax

bool dgsGridListSetMultiSelectionEnabled( element gridlist, bool state )
Single Selection
Multi Selection

Required Arguments

  • gridlist: The grid list in which you wish to set the state of the multi selection.
  • state: The state of the multi selection.

Returns

Returns true if succeed, false otherwise.

Example

DGS = exports.dgs
function clientsideResourceStart ()
	gridlist = DGS:dgsCreateGridList(300,50,600,600,false)
	DGS:dgsGridListAddColumn(gridlist,"test1",0.3)
	DGS:dgsGridListAddColumn(gridlist,"test2",0.1)
	DGS:dgsGridListSetMultiSelectionEnabled(gridlist,true)
	for i=1,50 do
		local row = DGS:dgsGridListAddRow(gridlist)
		DGS:dgsGridListSetItemText(gridlist,row,1,tostring(i).." DGS Test")
	end
	showCursor ( true )
end
addEventHandler ( "onClientResourceStart", resourceRoot, clientsideResourceStart )  

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