We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
아래 보시는것처럼 axmodal open 으로 iframe 을 열 경우 iframe 태그 내에 src 값을 할당하는 방법이 있는지 알고싶습니다. API 내부 config 옵션을 사용해 보아도 해당부분이 적용이 되지 않네요.
적용 방법이 있다면 알려주셨으면 합니다.
속성은 아래 와 같이 하였고
myModal.setConfig({ windowID: "myModalCT", width: 1020, opendModalID: "myModalCT", displayLoading: true, onclose: function () { //toast.push("모달 close"); } }); myModal.setWidth("100%");
오픈은
modalOpen: function(gridData){ myModal.open({ type: "GET", url:"주소", top:50, pars:("&"+gridData).queryToObject(), closeByEscKey:true }); myModal.setWidth("100%"); },
이와 같이 적용 하였습니다.
테스트한 툴은 openWax 를 통하여 테스트 하였습니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
아래 보시는것처럼
axmodal open 으로 iframe 을 열 경우 iframe 태그 내에 src 값을 할당하는 방법이 있는지 알고싶습니다.
API 내부 config 옵션을 사용해 보아도 해당부분이 적용이 되지 않네요.
적용 방법이 있다면 알려주셨으면 합니다.
속성은 아래 와 같이 하였고
myModal.setConfig({
windowID: "myModalCT",
width: 1020,
opendModalID: "myModalCT",
displayLoading: true,
onclose: function () {
//toast.push("모달 close");
}
});
myModal.setWidth("100%");
오픈은
modalOpen: function(gridData){
myModal.open({
type: "GET",
url:"주소",
top:50,
pars:("&"+gridData).queryToObject(),
closeByEscKey:true
});
myModal.setWidth("100%");
},
이와 같이 적용 하였습니다.
테스트한 툴은 openWax 를 통하여 테스트 하였습니다.
The text was updated successfully, but these errors were encountered: