Issue: Static Image Selected but Image Source Still Shows None in Mendix

0
I am working in Mendix Studio Pro. I have already selected an image from Static Images by clicking the Edit button in the Image widget properties. The image exists in the project and I selected it successfully.However, after selection:The Image Source field still displays "(none)"The image is not rendered in the running applicationClicking Edit again does not show the selected image in the Image Source fieldNo errors are displayed in the consoleCould you explain:Why does the Image Source field still show "(none)" even after selecting a static image?Is this a Mendix Studio Pro UI issue, cache issue, or project configuration issue?How can I verify whether the image is actually linked to the widget?What steps should I follow to make the image appear correctly in the application?
asked
1 answers
1

The most likely explanation is that the image was selected in the Static Images dialog but the selection was not actually committed to the Image widget.

I would suggest checking the following:

  • Image Source shows "(none)": This normally means the Image widget does not currently have a static image assigned.
  • Select the image again: Click Edit, select the required image under Static Images, and make sure you confirm the selection.
  • Verify the assignment: Reopen the Image widget properties. The selected image should now appear instead of "(none)".
  • Try another image: Select a different static image to determine whether the issue is specific to that image.
  • Recreate the widget: If it still shows "(none)", delete the Image widget, add a new one, and select the image again.
  • Clean and restart: Run Clean Deployment Directory and restart the application if necessary.

If the Image Source continues to show "(none)" after these steps, it is more likely a Studio Pro/project issue than an application runtime issue.

answered