You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If 'Allow Sorting' is set to true on an Entity Picker column, toggling the column to sort triggers a call to the getAll endpoint, but the sorting parameter is not included in the request
#2514
When the 'Allow Sorting' property is enabled for a column in the Entity Picker, toggling the column to sort triggers a call to the getAll endpoint. However, the sorting parameter is missing from the request, preventing the column from sorting the data as expected
Click on 'Address Line 1' column to toggle the sorting
Check the payload of the endpoint being called upon toggling the column
Actual Results: The propertyName used for sorting is not appended to the query string parameters under sorting
NB: You can verify how sorting works in the DataTable. When a sortable column is clicked, the sorting parameter is appended to the query string, and the data is sorted accordingly.
Expected behavior
The propertyName used for sorting should be correctly appended to the query string parameters under sorting, ensuring the data is sorted as expected when the column is clicked.
The text was updated successfully, but these errors were encountered:
Note: There are other properties in the column configuration suitable for dataTable inline functionality, but they are not applicable to the Entity Picker. Can we hide these? Please see the attached screenshot.
Since the implementation is similar to the dataTable, only show properties that are applicable to the Entity Picker
When the 'Allow Sorting' property is enabled for a column in the Entity Picker, toggling the column to sort triggers a call to the getAll endpoint. However, the sorting parameter is missing from the request, preventing the column from sorting the data as expected
Steps to reproduce the behavior:
NB: You can verify how sorting works in the DataTable. When a sortable column is clicked, the sorting parameter is appended to the query string, and the data is sorted accordingly.
Expected behavior
The propertyName used for sorting should be correctly appended to the query string parameters under sorting, ensuring the data is sorted as expected when the column is clicked.
The text was updated successfully, but these errors were encountered: