DgsGridListGetAutoSortEnabled

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function gets whether the auto sorting of grid list enabled.

Auto Sorting means when the grid list have target sorting column and sorting function, grid list will start do sorting at the next frame.

Syntax

bool dgsGridListGetAutoSortEnabled( element gridlist )

Required Arguments

  • gridlist: The grid list which you want to get auto sorting state from.

Returns

Returns true if succeed, false otherwise.

Example

DGS = exports.dgs

local sortfnc = [[
	local arg = {...}
	local a = arg[1]
	local b = arg[2]
	local column = dgsElementData[self].sortColumn
	local texta,textb = a[column][1],b[column][1]
	return texta < textb
]] -- Define our sorting function

gridlist = DGS:dgsCreateGridList(300,50,600,600,false)
DGS:dgsGridListSetSortFunction(gridlist,sortfnc) -- set and load the sorting function
DGS:dgsGridListSetSortColumn(gridlist,2) -- choose which column to be sorted by.

DGS:dgsGridListAddColumn(gridlist,"test1",0.3)
DGS:dgsGridListAddColumn(gridlist,"test2",0.2)
for i=1,50 do
	local row = DGS:dgsGridListAddRow(gridlist)
	DGS:dgsGridListSetItemText(gridlist,row,1,tostring(i))
	DGS:dgsGridListSetItemText(gridlist,row,2,50-tostring(i))
end
local state = DGS:dgsGridListGetAutoSortEnabled(gridlist) -- The default state is true which means on
outputChatBox(tostring(state))

showCursor ( true )

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