I wrote the following functions. At run time the browser plains about uncaught TypeError ...has no method 'init'. What's wrong of my code?
function build_results_grid (response) {
// build grid
grid_ui.init();
} // build the results grid
var grid_ui = function () {
return {
init: function () {
//build_grid();
}
}; // return
}
I wrote the following functions. At run time the browser plains about uncaught TypeError ...has no method 'init'. What's wrong of my code?
function build_results_grid (response) {
// build grid
grid_ui.init();
} // build the results grid
var grid_ui = function () {
return {
init: function () {
//build_grid();
}
}; // return
}
Share
Improve this question
asked Dec 21, 2010 at 2:55
Progress ProgrammerProgress Programmer
7,39415 gold badges51 silver badges55 bronze badges
2 Answers
Reset to default 9You assigned grid_ui
to a function, without calling it.
Change that to
var grid_ui = (function() { ... })();
since a call to grid_ui is necessary to return the function with init inside, you need
grid_ui().init();
Since grid_ui must be called. Or you can make grid_ui
be the return of the call, as SLaks did
EDIT - I misread your braces, if you noticed the question I had here before you can disregard it.