Looking at the reference for ImGui and seeing
Trying
because I already have a column header for the checkboxes. But this does not work beyond the first checkbox in the loop (at least for showing the check mark as all this will do is feed a check of ##.selected).
When I put an actual value (ex full.shortname) in instead of "" it works fine. But "" (and I've tried " " too) doesn't seem to want to be acknowledged as a string.
I'll be out of town for a week so won't be able to test responses, but any help would be appreciated.
Code:
-- Checkbox
---@param label string
---@param value boolean
---@return boolean value, boolean pressed
function ImGui.Checkbox(label, value) end
Trying
Code:
full.selected = ImGui.Checkbox("", full.selected)
When I put an actual value (ex full.shortname) in instead of "" it works fine. But "" (and I've tried " " too) doesn't seem to want to be acknowledged as a string.
I'll be out of town for a week so won't be able to test responses, but any help would be appreciated.

