Xwiki Database list not loading data

I have created an application with name UserNeed and have added following properties to it

  1. ID
    2 Description

I need to create one more application in the same space named “DesignInput”. I wanted to load the ID of the UserNeed app as a drop-down list selection in this application for a entry. I tried with database list but it doesn’t seem to work.

Here is the entry that i have done

image

But the list in design input application doesn’t load the data. Both of the applications lies in same subfolders but not in the root. Kindly help me to figure out the issue.

Am using xwiki version [XWiki 9.11.8 ]

Binding the Database List property from DesignInput class to the ID property from UserNeed class is possible only if you use an explicit “Hibernate Query” (see https://extensions.xwiki.org/xwiki/bin/view/Extension/Query+Module ).

If you don’t have multiple UserNeed objects on the same wiki page then you can identify the UserNeed object by the page full name. This makes it easier to bind the Database List property: you just leave the “ID Field Name” empty (i.e. you specify only the class name).

If you have multiple UserNeed objects on the same wiki page then the only option is the explicit query.