Hi, I have a databound form with a bunch of databound selectItems that are populated when the form fetches. My problem is that they sometimes send 2 fetch requests to their optionDatasources.
It looks like the selectitems are trying to fetch a missing value since one of the fetch requests has methodName:"fetchMissingValueReply" in the callback of the DSRequest.
Since it only happens sometimes and to different selectitems, I'm guessing that they send the extra request if they haven't gotten the response from the first one by the time they get their data from the form.fetchData.
Since I am fetching whole valuemap for the select item the first time, the second fetch is just a waste.
Can you explain what causes the second ("fetchMissingValueReply") fetch to fire and how I turn it off?
I have attached a screenshot of two of these fetches from the developer console RPC tab.
Let me know if you need any more data.
It looks like the selectitems are trying to fetch a missing value since one of the fetch requests has methodName:"fetchMissingValueReply" in the callback of the DSRequest.
Since it only happens sometimes and to different selectitems, I'm guessing that they send the extra request if they haven't gotten the response from the first one by the time they get their data from the form.fetchData.
Since I am fetching whole valuemap for the select item the first time, the second fetch is just a waste.
Can you explain what causes the second ("fetchMissingValueReply") fetch to fire and how I turn it off?
I have attached a screenshot of two of these fetches from the developer console RPC tab.
Let me know if you need any more data.
Comment