Complications with Director and TableView 1.8.1

I am using the director library to load new modules. When the modules are static (don’t require tableView) everything works just fine. When I use the same code to load a module that is also using the tableView library, I get an error.

On my Menu page, here is the code that I am using to call the module with tableView.

[lua]function changeScene(e)
if(e.phase == “ended”) then
director:changeScene(“conditions”, “moveFromRight”);
end
end[/lua]

On the conditions page (the one using tableView) I am using the following code:

[lua]module(…, package.seeall)

–director = require(“director”);
local tableView = require(“tableView”);

function new()
local localGroup = display.newGroup()
.
.
.
return localGroup
end[/lua]

I know that the code in between when the page is loaded on its own (renaming it main.lua) but when I try to call this page using the director class, I get the following error:

“Director ERROR: Failed to execute function: 00BEA650( params ) function on ‘conditions’.” [import]uid: 94148 topic_id: 16956 reply_id: 316956[/import]