놀이방
본문 바로가기

전체 글

(318)
[vscode] npm start로 크롬(Chrome)을 기본브라우저로 선택하기 안녕하세요이번 포스팅은 vscode에서 npm start를 하면 브라우저를 킬 수 있는데엣지로 켜지는 걸 크롬으로 변경하는 방법을 알아보겠습니다. 원인은 컴퓨터 웹 브라우저 기본 설정이 edge로 되어 있어서 그런거였습니다. 경로는 제어판 > 프로그램 > 기본 프로그램 > 기본 앱 > 크롬을 기본값으로 설정위에 보이듯이 잘 작동하게 됩니다!
[SAP UI5]SAP UI5 연습하기 - Walkthrough Tutorial Step6(Modules) - 모듈 안녕하세요SAP UI5 연습하기 - Walkthrough Tutorial Step6(Modules) - 모듈 저번 컨트롤러 포스팅에 이어 모듈에 대해 공부하겠습니다. App.controller.js 소스 추가sap.ui.define([    "sap/ui/core/mvc/Controller",    "sap/m/MessageToast" ], (Controller, MessageToast) => {    "use strict";     return Controller.extend("ui5.walkthrough.controller.App", {       onShowHello() {          MessageToast.show("Hello World");       }    }); });sap/m/Mes..
[SAP UI5]SAP UI5 연습하기 - Walkthrough Tutorial Step5(Controllers) 컨트롤러 안녕하세요SAP UI5 연습하기 - Walkthrough Tutorial Step5(Controllers) 컨트롤러 부분을 연습해보겠습니다.  App.view.xml 파일에 소스 추가하기mvc:View   controllerName="ui5.walkthrough.controller.App"   xmlns="sap.m"   xmlns:mvc="sap.ui.core.mvc">   Button      text="Say Hello"      press=".onShowHello"/>mvc:View>버튼태그를 통해 버튼을 만든다. text는 버튼안에 내용이고 press는 버튼을 누르면 작동하는 이벤트명입니다. controller.js파일 만들기controller.js 파일을 만들기 위해서는 webapp 폴더 밑에..