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
On the page where I use HxListLayout, I use the LoginAccountPicker component (a descendant of HxAutosuggest) in the FilterTemplate.
The purpose of LoginAccountPicker is to call the api for prompting users as shown bellow:
After applying the filter, a list of Chips is generated. However, as soon as I remove any chip other than the one generated from the LoginAccountPicker from the list, this chip is also removed from the list, although the value in the filter still remains.
I tried modifying the ResolveAutosuggestItemFromValue function so that I didn't retrieve the data asynchronously and didn't use await (I just read it from the mocked list memory), but the result was the same.
While debugging this issue, I also discovered that the HxListLayout lifecycle is repeatedly creating new LoginAccountPicker components. Maybe this could be the problem?
The text was updated successfully, but these errors were encountered:
On the page where I use
![image](https://private-user-images.githubusercontent.com/29128851/402019140-51947c64-0a29-456a-8b8c-c64ffa41ddbf.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2MDYxNjQsIm5iZiI6MTczOTYwNTg2NCwicGF0aCI6Ii8yOTEyODg1MS80MDIwMTkxNDAtNTE5NDdjNjQtMGEyOS00NTZhLThiOGMtYzY0ZmZhNDFkZGJmLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE1VDA3NTEwNFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTgxOTYxZGI5ODYyNTFmMjkwMDMxMjFlMjQ0N2NiMDVjM2Y0MDRhYmE1NmMyYzliZGE1NzYxMzI3MTU0MzgwYzAmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.ATW-x8SFJpVn2Cm5vDBuj2bFScVMpDyPJvmxsAZ3nWY)
HxListLayout
, I use theLoginAccountPicker
component (a descendant ofHxAutosuggest
) in theFilterTemplate
.The purpose of
![image](https://private-user-images.githubusercontent.com/29128851/402019666-b2f5304c-68ce-42f2-98f6-24f875a03dc4.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2MDYxNjQsIm5iZiI6MTczOTYwNTg2NCwicGF0aCI6Ii8yOTEyODg1MS80MDIwMTk2NjYtYjJmNTMwNGMtNjhjZS00MmYyLTk4ZjYtMjRmODc1YTAzZGM0LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE1VDA3NTEwNFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTE1ZTU0MmIwZjFlMmVhM2MwNDgwYjc1OTBjMWIzYThhMzU5NGU2MDM1OGFiNGJlOTA5YTE0OGI5MDhjODUyNDImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.LZq0ElzY6SrrD1qotrLVDHjQuiZwFNRz2NTNYo9ZgyY)
LoginAccountPicker
is to call the api for prompting users as shown bellow:After applying the filter, a list of Chips is generated. However, as soon as I remove any chip other than the one generated from the
LoginAccountPicker
from the list, this chip is also removed from the list, although the value in the filter still remains.I tried modifying the
ResolveAutosuggestItemFromValue
function so that I didn't retrieve the data asynchronously and didn't use await (I just read it from the mocked list memory), but the result was the same.While debugging this issue, I also discovered that the HxListLayout lifecycle is repeatedly creating new LoginAccountPicker components. Maybe this could be the problem?
The text was updated successfully, but these errors were encountered: