thomasJang / axisj

javascript UI library
http://axisj.com/
GNU Lesser General Public License v2.1
310 stars 86 forks source link

axmodal iframe 관련 문의 드릴것이 있습니다. #1003

Open boxkie opened 7 years ago

boxkie commented 7 years ago

아래 보시는것처럼 axmodal open 으로 iframe 을 열 경우 iframe 태그 내에 src 값을 할당하는 방법이 있는지 알고싶습니다. API 내부 config 옵션을 사용해 보아도 해당부분이 적용이 되지 않네요.

004

적용 방법이 있다면 알려주셨으면 합니다.

속성은 아래 와 같이 하였고

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 를 통하여 테스트 하였습니다.