-
Goal:
I am trying to achieve seamless functionality for my app's input component when used within a Repeatable List for filtering time conditions. The expected behavior is for the input component to function correctly regardless of the permission setting (Edit or Use).- Steps: -
Details:
- Insert an input component inside a Repeatable List to use as a time condition filter.
- Set the permissions to Use and attempt to update the input.
- Observe that the input component is not selectable.
- Change the permission to Edit and note that the input component works as expected.
- Compare the setup with other apps where the same structure and queries are used without issues.
** I assume this is related with JS query
let arrayData = Object.values(currentTimeBlock.value);
let locationInput = LocationCondition.value;
const selectedIndex = currentAvailabilityIndex.value;
// 유효한 인덱스인지 확인
if (selectedIndex >= 0 && selectedIndex < arrayData.length) {
arrayData[selectedIndex].Location = locationInput; // 선택된 항목 삭제
}
// 배열을 그대로 상태에 설정
currentTimeBlock.setValue(arrayData);
// deleteIndex 초기화
currentAvailabilityIndex.setValue(null);
-
Screenshots:
-
App json export: (here's how to get a json export)
Forum1.json (64.6 KB)