Hi,
I can´t resolve this; ataching a variable to the array query and assigning to an other variable.(second line)
Code
set(lotenum, get(hotspot[get(i)].lote));
set(lotedisponible, get(datoslotifica[get(lotenum)].status));
if(lotedisponible == 1,
set(hotspot[get(lotenum].fillcolor, colorlote_disponible);,
lotedisponible == 2,
set(hotspot[get(lotenum].fillcolor, colorlote_apartado);,
set(hotspot[get(lotenum].fillcolor, colorlote_vendido);
);
The first variable lotenum works fine, but when I try to asign the array result to lotedisponible it didn´t returns nothing
I want to assign color to some polyhotspots
Please Help