Export
IP Table Documentation
Overview
Table Configuration
Properties:
Example Usage
exports.ip_table:open({
id = "Title",
head = { "Name", "VipLevel" },
list = {
{"RoyleWind","5"},
{"SLNC","2"},
{"XPHANTOP","1"},
},
onClose = function()
print("Closed ๐ช")
end,
actions = {
["Print"] = function(index, data)
print("Name: " .. data[1])
end,
["Action 2"] = function(index, data)
print("Name: " .. data[1])
end,
}
})Actions
Closing Behavior
Notes
Last updated