this works for me when i click on grid2 then on grid1:
click1 = function()
local row,col = guiGridListGetSelectedItem ( grid )
local row2,col2 = guiGridListGetSelectedItem ( grid2 )
if ( row == 0 ) and ( col == 1 ) then
guiSetText(text,english)
elseif ( row == 1 ) and ( col == 1 ) then
guiSetText(text,lithuanian)
elseif ( row == 2 ) and ( col == 1 ) then
guiSetText(text,portugese)
elseif ( row == 3 ) and ( col == 1 ) then
guiSetText(text,spanish)
elseif ( row == 4 ) and ( col == 1 ) then
guiSetText(text,italian)
elseif ( row == 5 ) and ( col == 1 ) then
guiSetText(text,latvian)
elseif ( row == 6 ) and ( col == 1 ) then
guiSetText(text,polish)
elseif ( row2 == 0 ) and ( col2 == 1 ) then
guiSetText(text,commands)
elseif ( row2 == 1 ) and ( col2 == 1 ) then
guiSetText(text,website)
elseif ( row2 == 2 ) and ( col2 == 1 ) then
guiSetText(text,updates)
elseif ( row2 == 3 ) and ( col2 == 1 ) then
guiSetText(text,staff)
end
end
addEventHandler('onClientGUIClick',root, click1)
But, when i click from grid1 to grid2 it doesn't show grid2, it shows grid1