Hello , i'm having a problem with this code
for i,v in pairs(Gridlists) do
local column=guiGridListAddColumn(v,"Column",85)
for g = 1, 15 do
local row=guiGridListAddRow(v)
for k,c in ipairs(Texts) do
guiGridListSetItemText(v,row,column,c,false,false)
end
end
end
This code will make a 15 rows into the gridlists which is into the "Gridlists" table , and the 'Texts' Table is containing all texts which should be in the 15 different rows , but i only see the fourth item which is in the table has included all rows which is in the given gridlists, what do i do ?