outsystems

폼 구축하기

Eprld 2024. 11. 10. 15:41

Employee Detail화면에서 Employee 데이터를 끌어온다    

그 다음 form을 가져와서 그 안에 새로 만든 Arrgerate를 넣는ㄷㅏ 

-ID를 제외한 속성이 만들어 진다 / DepartmentID는 드로다운, IsActive는 Boolean 속성에 대한 체크박스를 나타낸다  

 

 

직원 추가 버튼 만들기

 

 

컨테이너 추가해서 DropDown 추가한 다음 아래 처럼 설정   

 

Ofiicial Location 테이블을 만들어서 Employee 테이블 밑에 둔다  

 

드롭다운 설정하기 

  • 변수 :GetEmployees.List.Current.Employee.OfficeLocationId
  • 목록 :GetOfficeLocations.List
  • 옵션 텍스트 :OfficeLocation.Label
  • 옵션 값 :OfficeLocation.Id

 


 

Project Member화면 구성하기

-EmployeePicture 테이블에 데이터를 채우는 과정   

 

-원래있던 컨너이너의 너비를 줄이고 옆에 다른 컨테이너를 넣는다

-container > image> upload 순으로 채우고

이미지는 

GetEmployeePictures.List.Current.EmployeePicture.Picture

 

업로드는

 

파일 내용 :GetEmployeePictures.List.Current.EmployeePicture.Picture

파일 이름 :GetEmployeePictures.List.Current.EmployeePicture.FileName

 

이렇게 지정을 한다   

 

OPEN BROWSER시 나오는 화면   

'outsystems' 카테고리의 다른 글

화면 동작 구현하기  (1) 2024.11.10
양식 검증  (0) 2024.11.10
목록 화면 만들기  (0) 2024.11.10
스크린 구축  (0) 2024.11.10
Aggregate 구현하기  (0) 2024.11.10