[solved] dynamical id tags

Hi there,

I’d like to generate something like dynamical id tags for hiding/showing elements in my GUI, because I do not know how many there will be a priori.

I guessed something like

  
for count = min,max do  
  
 local test = vb:row{  
 id = 'test_'..tostring(count)}  
  
end  
  
  

but well, I cannot access ids like test_1 from the views.

Does anyone know a smart way to build dynamic ids?

Thanks a lot, Chris

EDIT:

I am sorry, works exactly as I guessed, I had a typo in my actual code.