- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2022 11:41 PM
I have got this error - 'Server JavaScript error Cannot read property "view" from undefined' after changes on a widget and loading the form.
Any idea why this is coming?
error screenshot:
Code screenshots:
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2022 09:52 AM - edited 02-07-2024 01:56 PM
This is being caused by your server script on line 10. The input object is the data object received from the client controller. If you adjust the script to something like this that error should go away:
if (input) {
var localInput = input;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2022 09:52 AM - edited 02-07-2024 01:56 PM
This is being caused by your server script on line 10. The input object is the data object received from the client controller. If you adjust the script to something like this that error should go away:
if (input) {
var localInput = input;