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
In a modal view we have two ExternalSelectElements that provide suggestion support for user entering customer and project values. We would love to use the input of the first select element, if a selection was performed, as filter for the second one without having to store the entered value in a short-living cache or backing datastore. The API could simply return the value of the selected elements within the ViewState object similar to how blockAcktion(...) or viewSubmission(...) receive it.
can be used to learn the actual selected value (before the modal is submitted). Trying that within a blockSuggestion(...) fails as here the ViewState is basically empty (ViewState(values={})).
While we could push that value to some backing cache or datastore, i.e. Redis, so we can access it while making a suggestion for the second one by including the selection of the first input field as filter, I wonder if there are ways to actually get the ViewState also within blockSuggestion(...) and not only blockAction(...) and viewSubmission(...) somehow so we could use the value entered/selected in the first input as filter for the second suggestion? This would avoid having to push those values to a short-living cache or backing datastore.
The text was updated successfully, but these errors were encountered:
👋 It looks like this issue has been open for 30 days with no activity. We'll mark this as stale for now, and wait 10 days for an update or for further comment before closing this issue out. If you think this issue needs to be prioritized, please comment to get the thread going again! Maintainers also review issues marked as stale on a regular basis and comment or adjust status if the issue needs to be reprioritized.
@filmaj do you have any update on this one? As you mentioned that the requested change is reasonable and the bot is about to close this issue, I fear that this just increases the likelihood for this request being dropped
Sorry about the bot, I forgot to add the 'skip' label. I did raise this internally and have no update to provide at this time - sorry! When I hear about any updates I will certainly let you know.
In a modal view we have two
ExternalSelectElement
s that provide suggestion support for user entering customer and project values. We would love to use the input of the first select element, if a selection was performed, as filter for the second one without having to store the entered value in a short-living cache or backing datastore. The API could simply return the value of the selected elements within theViewState
object similar to howblockAcktion(...)
orviewSubmission(...)
receive it.The modal basically looks like this:
Suggestions are provided via
while
can be used to learn the actual selected value (before the modal is submitted). Trying that within a
blockSuggestion(...)
fails as here theViewState
is basically empty (ViewState(values={})
).While we could push that value to some backing cache or datastore, i.e. Redis, so we can access it while making a suggestion for the second one by including the selection of the first input field as filter, I wonder if there are ways to actually get the
ViewState
also withinblockSuggestion(...)
and not onlyblockAction(...)
andviewSubmission(...)
somehow so we could use the value entered/selected in the first input as filter for the second suggestion? This would avoid having to push those values to a short-living cache or backing datastore.The text was updated successfully, but these errors were encountered: