본문 바로가기

Mendix/ETC14

Java action Create Object 보호되어 있는 글 입니다. 2025. 6. 3.
Test2 보호되어 있는 글 입니다. 2025. 5. 6.
javascript event const menuItems = document.querySelectorAll('.custom-sidebar li.mx-navigationtree-has-items');menuItems.forEach(item => { item.addEventListener('click', function () { menuItems.forEach(otherItem => { if (otherItem !== item) { if (!otherItem.classList.contains("mx-navigationtree-collapsed")){ otherItem... 2025. 2. 16.
Mendix Release 10.17 변경 사항 정리 1. 다양한 언어 지원일본어, 중국어, 한국어 제공 Edit > Preferences > work environment에서 언어를 설정할 수 있다.  2. 지원도구Help > Support tool Studio Pro의 로그  수준을 즉석에서 변경할 수 있다. 기타 등등을 추가 했다는데 써봐야 알 거 같다. 3. Microflow와 Nanoflow의 선택 매개변수(Optional parameters) 필수인지 선택인지 선택하게 해서 이전 버전과의 호환성을 올리겠다는 취지인데 필요했던 기능이다. 4. 루프의 인덱스 왜 이제 나왔는지 의문인 기능, 이걸 못해서 비효율적으로 돌려야했는데 당장 버전을 바꾸고 싶다.  $currentIndex를 사용하면 Integer를 반환한다. 0부터 시작된다.  5. 베타 버.. 2024. 11. 29.
[Mendix] Deeplink in Native (studio pro 8) 네이티브 모바일에서 딥링크 설정 https://docs.mendix.com/howto8/mobile/native-deep-link/#using-deep-linking ios : https://www.kodeco.com/6080-universal-links-make-the-connection Android: https://docs.mendix.com/howto8/mobile/native-deep-link/#for-android Make It Native 스튜디오 프로에서 기본 네이티브 모바일 앱 시작하는 방법 https://docs.mendix.com/howto8/mobile/getting-started-with-native-mobile/ 전제 조건: 앱으로 다운받고 사용하고 싶을 때 https://doc.. 2023. 8. 17.
[Mendix] 딥링크(Deeplink) 사용법 MxReflection 모듈 설치 > Deeplink module 설치 1. Add afterStartup to Project Setting에 있는 StartDeeplink를 Setting의 runtime에 After start up에 지정한다. StartDeeplink에서 2. Default Homepage를 Set한다. Native는 선택이 안된다. Native는 Activity가 옆에 있다 더보기 The deeplink module could not map the request to a configuration item in the deeplink module configuration. 딥링크 모듈이 요청을 딥링크 모듈 구성의 구성 항목에 매핑할 수 없습니다. This microflow should.. 2023. 8. 16.