본문 바로가기

Mendix/Document18

[Mendix] Local에서 작업한 프로젝트 server에 올리기 로컬에서 작업하던걸 공유하기 위해 server로 올리고 싶다면 Version Control > Upload to Version Control Server를 누른다.앱 네임을 지정하는 팝업이 뜰거고 ok누르면 완료된다. 2024. 11. 27.
[Jxls] jxls-2.14.0.jar에서 jxls-3.0.0.jar로 변경하기 출처: 마이그레이션 방법: https://jxls.sourceforge.net/migration-to-v3-0.htmlJxls 사용법: https://jxls.sourceforge.net/getting-started.htmlhttps://jxls.sourceforge.net/builder.html 주요 변경사항 - JxlsHelper -> new builder API - All options can now be set in the builder with a Fluent API- The TransformerFactory and createTransformer() methods have also been removed.등등등 문서 보면 나옴. 결론 ① userlib에 기존 파일 삭제 jxls ② 코드 수정.. 2024. 11. 26.
[Mendix] Pluggable Widget 참고: https://docs.mendix.com/howto/extensibility/create-a-pluggable-widget-one/ 선수 조건 1. Node.js LTS 버전 설치( https://nodejs.org/en)2. 원하는 통합 개발 환경(IDE) 설치 ( MS Visual Studio Code 권장https://code.visualstudio.com/)3. TypeScript 에 대한 기본적인 이해 #mkdir myPluggableWidgets #cd myPluggableWidgets #npx @mendix/generator-widget TextBoxC:\Users\본인명\Menidx\App_Name\에 접근해서 폴더를 생성한다.cmd 에서 mkdir로 myPluggableWidge.. 2024. 11. 13.
[Mendix] PDF Document Generation DocumentGeneration을 사용하기 위해서는 사전에 해야할 작업들이 있다.App > Marketplace modules > DocumentGeneration에 들어간다.1. _UseMe > Admin 안에 Snip을 사용해서 app 등록을 진행한다. 2. After startup에 JA_DocumentGeneration_initialize를 둔다. **최대 파일 크기는 문성당 25MB -> 이미지 압축을 추천한다.페이지 로드 및 렌더링을 완료하기 위해 고정된 제한 시간을 사용한다. 30초   출처:  https://docs.mendix.com/appstore/modules/document-generation/  Page에서 Property > Styling 안에 있는 Enable PDF expo.. 2024. 5. 27.
[Mendix] 배포 방법 Mendix Studio Pro의 App > Create Deployment Package를 클릭한다. Show App Directory in Explorer을 클릭하면 release 안에 xxxxxx.mda 파일이 생성된다. 해당 파일을 배포한다. Window의 경우 윈도우 콘솔에서 Update App으로 해당 mda 파일을 선택하여 배포할 수 있다. Cloud의 경우 운영 개발 테스트 에 나뉘어져 있어 해당 mda 파일로 각각에 배포할 수 있다. 2024. 1. 29.
Excel 삽질 jXLSer사용https://marketplace.mendix.com/link/component/117034 export하기 용이함import는 아직 안해봄 대소문자에 민감함으로 docs보고 동일하게 맞춰줘야 사용가능함List는 해당 영역만 밀어버리니 List 밑에 더 뿌려야하는 데이터가 있다면 Area를 아래에 데이터 만큼 X축을 길게 잡아야함 2023. 7. 7.