SOLFIND
Web Lens
Portal home

Widget Errors | Appsmith

https://docs.appsmith.com/help-and-support/troubleshooting-guide/widget-errors • 55 KB fetched
Open original page


Widget Errors | Appsmith

Skip to main content

Ask AI
Search

Ask Appsmith AI Submit message

Examples How do I install Appsmith using Docker? How do I connect to my local PostgreSQL database? How do I pass inputs from a widget to a query? How do I trigger multiple queries conditionally? How do I fix the error: This value does not evaluate to type Array<Object>?

Search

Try Appsmith

* Get Started

* Introduction

* Build Your First App

* Self Hosting

* New Installation Guides

* Manage Installation

* Upgrade Installation Guides

* Concepts

* Connect Data

* Overview

* How-to Guides

* Reference

* Datasources

* Query Settings

* Concepts

* Build Apps

* Overview

* Quickstart

* How-to Guides

* Reference

* Widgets

* Accessibility

* Theme

* Sample Apps

* Write Code

* Overview

* How-to Guides

* Reference

* Global Objects

* Global Functions

* JS Libraries

* Fetch API

* Data Transformation

* JavaScript Settings

* Concepts

* Best Practices

* Manage Apps and Users

* Authentication

* Granular Access Control

* Versioning with Git

* Setup SCIM Provisioning

* Embed Appsmith

* Migrate Applications

* Audit Logs

* Branding

* External Client Portal

* Packages

* Overview

* Tutorial

* How-to Guides

* Reference

* Package Version Control

* GIT Apps with Packages Best Practices

* Code Packages

* UI Packages

* Workflows

* Overview

* Tutorial

* How-to Guides

* Reference

* Workflow Triggers

* Workflow Queries

* Workflow Functions

* Pass Parameters to Workflows

* Run History

* Troubleshooting

* Overview

* Self-hosting Errors

* Application Errors

* Datasource Errors

* Query Errors

* Git Errors

* Granular Access Control Errors

* Cyclic Dependency Errors

* Embedding and Content Security Errors

* JS Errors

* Query Errors

* Widget Errors

* Product

* FAQ

* Security

* Telemetry

* Support at Appsmith

* Privacy Policy

* Release Notes

* Contribute

© 2026 Appsmith, Inc.

*

* Troubleshooting

* Application Errors

* Widget Errors
On this page
Widget Errors

This section helps you troubleshoot common widget errors on the Appsmith platform.

Binding errors ​

You may see below errors when binding data to widgets from an API, Query, or JS object .

Sync field error ​

You may see this error when executing an API, Query, JS Object in a widget property that expects data, and can't be used to trigger an action.

Error message ​

Found a reference to {{action}} during evaluation. Sync fields cannot execute async framework actions. Please remove any direct/indirect references to {{action}} and try again.

Or

Found a Promise() during evaluation. Sync fields cannot execute asynchronous code.

Cause ​

Action refers to the execution of an API, Query, or JS object. You can only perform an action by binding it to an async field. When you bind an action to a sync field that only expects data, it throws an error.

Example: if you are executing a storeValue() function in a TableData property of a table. The TableData property expects data and can't execute a function, and results in an error. Similarly, if you try to execute a JS Object function <JSOBJECT_NAME.FUNCTION_NAME> in the TableData property, it throws an error.

Solution ​

Invoke the data property of an API, Query or JS object.

For example, you have a JS Object getLoggedInUserInfo , which has a function getFullNameOfLoggedInUser . The function returns the full name of the logged-in user. You wish to add the full name and create a welcome text, Welcome! <LOGGED_IN_USER_NAME> . Bind the response of getFullNameOfLoggedInUser function to a text widget by calling the .data property. To bind the response, add the below code snippet in a mustache ( {{}} ) sign.

getLoggedInUserInfo.getFullNameOfLoggedInUser.data

JSON form errors ​

You may see the below errors when working with a JSON Form widget.

Source data exceeds 50 fields ​

You may see an error message when you try to bind a large query/API response to the source data property of the JSON Form widget.

Error message ​

Source data exceeds 50 fields. Please update the source data.

Cause ​

The problem can be caused when you are trying to bind:

* A large array of multiple JSON objects

* A huge JSON object which has a lot of fields

* The whole query data rather than a selected row or triggered row in a table

Solution ​

To determine if the problem is caused due to:

* A large array or a huge JSON object - You can re-look at the data and evaluate the need to display all the data on UI, as it would be painful for your users to navigate more than 50 fields.

* The whole query response that you bound to the source data - You recheck the source data field you are trying to bind and select either the selected row / triggered row to bind.

Once you have figured out the new structure for the data, head to the source data field to make changes.

If you still need help debugging an error, please raise a request on Discord Server or email [email protected] .

Default value is missing in options ​

You may encounter an error message "Default value is missing in options. Please update the value." while using the Select widget.

Error message ​

Default value is missing in options. Please update the value.

Cause ​

This error occurs when the Default Selected Value doesn't match any of the values specified in the options property of the widget.

Solution ​

To fix this error, either change the value in the options property to match the selected value, or change the selected value to match an option listed in the options property. This ensures that the value selected is valid and prevents the error from appearing.

Duplicate values found ​

You may encounter an error message "Duplicate values found for the following properties" while using the Select widget.

Error message ​

Duplicate values found for the following properties, in the array entries, that must be unique -- value.

Cause ​

This error occurs when there are duplicate values in the options property of the Select widget. For example,

{
"label" : "Blue" ,
"value" : "BLUE"
} ,
{
"label" : "Green" ,
"value" : "BLUE"
} ,

Solution ​

To resolve this error, ensure that each value in the options property of the Select widget is unique. You can do this by checking the values and making sure that there are no duplicates.

Was this page helpful?

Edit this page

Previous
Query Errors
Next
FAQ

* Binding errors
* Sync field error

* JSON form errors
* Source data exceeds 50 fields

* Default value is missing in options

* Duplicate values found

Links found on this page

  1. Skip to main content [direct]
  2. Try Appsmith [direct]
  3. Get Started [direct]
  4. Build Your First App [direct]
  5. Self Hosting [direct]
  6. New Installation Guides [direct]
  7. Manage Installation [direct]
  8. Upgrade Installation Guides [direct]
  9. Concepts [direct]
  10. Connect Data [direct]
  11. How-to Guides [direct]
  12. Reference [direct]
  13. Query Settings [direct]
  14. Concepts [direct]
  15. Build Apps [direct]
  16. Quickstart [direct]
  17. How-to Guides [direct]
  18. Reference [direct]
  19. Widgets [direct]
  20. Accessibility [direct]
  21. Theme [direct]
  22. Sample Apps [direct]
  23. Write Code [direct]
  24. How-to Guides [direct]
  25. Reference [direct]
  26. Global Objects [direct]
  27. Global Functions [direct]
  28. JS Libraries [direct]
  29. Fetch API [direct]
  30. Data Transformation [direct]
  31. JavaScript Settings [direct]
  32. Concepts [direct]
  33. Best Practices [direct]
  34. Manage Apps and Users [direct]
  35. Granular Access Control [direct]
  36. Versioning with Git [direct]
  37. Setup SCIM Provisioning [direct]
  38. Embed Appsmith [direct]
  39. Migrate Applications [direct]
  40. Audit Logs [direct]
  41. Branding [direct]
  42. External Client Portal [direct]
  43. Packages [direct]
  44. Tutorial [direct]
  45. How-to Guides [direct]
  46. Reference [direct]
  47. GIT Apps with Packages Best Practices [direct]
  48. Code Packages [direct]
  49. UI Packages [direct]
  50. Workflows [direct]
  51. Tutorial [direct]
  52. How-to Guides [direct]
  53. Reference [direct]
  54. Workflow Queries [direct]
  55. Workflow Functions [direct]
  56. Pass Parameters to Workflows [direct]
  57. Run History [direct]
  58. Troubleshooting [direct]
  59. Self-hosting Errors [direct]
  60. Application Errors [direct]
  61. Datasource Errors [direct]
  62. Query Errors [direct]
  63. Git Errors [direct]
  64. Granular Access Control Errors [direct]
  65. Cyclic Dependency Errors [direct]
  66. Embedding and Content Security Errors [direct]
  67. JS Errors [direct]
  68. Query Errors [direct]
  69. Product [direct]
  70. Security [direct]
  71. Telemetry [direct]
  72. Support at Appsmith [direct]
  73. Privacy Policy [direct]
  74. Release Notes [direct]
  75. Contribute [direct]
  76. JS object [direct]
  77. JSON Form [direct]
  78. Discord Server [direct]
  79. Edit this page [direct]