mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 16:54:57 +00:00
14 lines
240 B
Lua
14 lines
240 B
Lua
-- Number column definition
|
|
local function number_column(id, label, width)
|
|
return {
|
|
type = "number",
|
|
id = id,
|
|
label = label,
|
|
width = width or "100px",
|
|
sortable = true,
|
|
align = "right"
|
|
}
|
|
end
|
|
|
|
return number_column
|