Making a Menu with Gridview inside a subclass/scene

Hello, everyone!

I've been working on my first game and have hit a problem I can't quite solve with my limited lua experience.

I've used SquidGod's scene-manager technique to set up multiple scenes.

This means my main.lua file is basically empty and I have a number of separate .lua files that contain the code for each scene. The scene_manager allows me to transition between one scene and the next.

I've been trying to implement a menu inside of one of these scenes and I can't get it to display.

Here's my code - is there any way to get this gridview to appear within a class like this?

import "scripts/gameScene"

local pd <const> = playdate
local gfx <const> = playdate.graphics

class('scene03_menu').extends(gfx.sprite)

local gridview = pd.ui.gridview.new(32, 32)

gridview:setNumberOfColumns(8)
gridview:setNumberOfRows(6)

function scene03_menu:init()
    local backgroundImage = gfx.image.new("images/menu")
    gfx.sprite.setBackgroundDrawingCallback(function()
        backgroundImage:draw(0, 0)
    end)
    self:setZIndex(-1000)
    self:add()
end

function scene03_menu:update()
    gridview:drawInRect(100, 70, 200, 100)
    if pd.buttonJustPressed(pd.kButtonA) then
        SCENE_MANAGER:switchScene(GameScene)
    end
end

I've found that using this gridview code in my main.lua file makes it display, but when used inside my class like this, it won't display at all. SquidGod does mention in his Scene Manager video that a drawback is 'no overlaid scenes' - is that referring to this exact problem?

Any suggestions? I'd like to be able to have a level select on the main menu, and a 'replay or select level' sort of table upon Game Over. Is there a better implementation of a level select I should consider instead?

Thanks for your help!
-Darrell