"Valeriia" wrote:
I have the same problem( I use merging cells for hiding empty ones in the first row. Maybe there is another way to do it? I also tried to set numColumns the number of non-empty elements, but it leads to a cutoff of the poster image. Width change does not produce positive results.
"joetesta" wrote:"Valeriia" wrote:
I have the same problem( I use merging cells for hiding empty ones in the first row. Maybe there is another way to do it? I also tried to set numColumns the number of non-empty elements, but it leads to a cutoff of the poster image. Width change does not produce positive results.
for hiding cells I would first try setting the cell to "visible = false" or "opacity = 0"
"norcaljohnny" wrote:
Adjusting the config.brs and creating a blank cell it now works. (also in main.brs (for i=0 to 3 step 1)
function getGridTemplate() as Object
if not m.gridTemplate = invalid
return m.gridTemplate
end if
m.gridTemplate = [
{
id: 0,
x: 0,
y: 0,
w: 1,
h: 1
},
{
id: 1,
x: 1,
y: 0,
w: 1,
h: 1
},
{
id: 2,
x: 1,
y: 1,
w: 1,
h: 1
},
{
id: 3,
x: 0,
y: 1,
w: 0,
h: 0
}
]
return m.gridTemplate
end function
and you can see in the pic all 3 cells are firing
Cheers.