Summary of modifications:
FCString
now also accept Lua string
and number
.DataListCheck
and DataListSelect
events can now be set on a control.fcmctrldatalist.AddColumn(self, title, columnwidth)
[Fluid] [Override]
Accepts Lua string
and number
in addition to FCString
.
Input | Type | Description |
---|---|---|
self |
FCMCtrlDataList |
|
title |
`FCString | string |
columnwidth |
number |
fcmctrldatalist.SetColumnTitle(self, columnindex, title)
[Fluid] [Override]
Accepts Lua string
and number
in addition to FCString
.
Input | Type | Description |
---|---|---|
self |
FCMCtrlDataList |
|
columnindex |
number |
|
title |
`FCString | string |
fcmctrldatalist.AddHandleCheck(self, callback)
[Fluid] Adds a handler for DataListCheck events.
Input | Type | Description |
---|---|---|
self |
FCMCtrlDataList |
|
callback |
function |
See FCCustomLuaWindow.HandleDataListCheck in the PDK for callback signature. |
fcmctrldatalist.RemoveHandleCheck(self, callback)
[Fluid]
Removes a handler added with AddHandleCheck
.
Input | Type | Description |
---|---|---|
self |
FCMCtrlDataList |
|
callback |
function |
fcmctrldatalist.AddHandleSelect(self, callback)
[Fluid] Adds a handler for DataListSelect events.
Input | Type | Description |
---|---|---|
self |
FCMControl |
|
callback |
function |
See FCCustomLuaWindow.HandleDataListSelect in the PDK for callback signature. |
fcmctrldatalist.RemoveHandleSelect(self, callback)
[Fluid]
Removes a handler added with AddHandleSelect
.
Input | Type | Description |
---|---|---|
self |
FCMControl |
|
callback |
function |