• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Tim Cooke
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • Rob Spoor
  • Jeanne Boyarsky
Saloon Keepers:
  • Stephan van Hulst
  • Carey Brown
  • Tim Holloway
  • Piet Souris
Bartenders:

Getting Method or Property Not Supported Error

 
Ranch Hand
Posts: 2165
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When I run the following script:



This calls a remote js:



I get the following runtime error:

Error: Object doesn't support property or method 'timesheetdisplay'

This happens when the window[function]() fires.
 
Ranch Hand
Posts: 243
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ok. This means the "timesheetdisplay" function which you are trying to execute is not loaded in the memory, make sure your javascript files which contains this function is included. I would really clean up the code , a function with 10 parameters or more really calls for it. ?
 
Steve Dyke
Ranch Hand
Posts: 2165
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Srikkanth Mohanasundaram wrote:Ok. This means the "timesheetdisplay" function which you are trying to execute is not loaded in the memory, make sure your javascript files which contains this function is included. I would really clean up the code , a function with 10 parameters or more really calls for it. ?


Thanks
 
It's a tiny ad only because the water is so cold.
The Low Tech Laboratory Movie Kickstarter is LIVE NOW!
https://www.kickstarter.com/projects/paulwheaton/low-tech
reply
    Bookmark Topic Watch Topic
  • New Topic