Pluggable widget 커스텀 후 내 위젯 안에 다른 위젯을 넣을 수 있나요 ?

0
내가 개발한 pluggable widget 배치한 후 text box widget을 내 widget에 넣을 수 있나요?
asked
2 answers
2

예, 텍스트 상자 또는 다른 위젯을 사용자 지정 위젯에 넣을 수 있습니다. 이를 위해서는 위젯 xml 파일에 속성을 추가해야합니다.

<property key="content" type="widgets" required="false" dataSource="myDataSource"입니다>    

<caption>콘텐츠</caption>    

<description>데이터 원본을 사용하는 위젯</description>

</property>

그런 다음 이 속성 키를 다음과 같이 React HTML 콘텐츠에 배치하십시오.예: <div>{content}</div>

이것이 당신에게 도움이 될 경우 대답을 수락하십시오.

answered
0

"After developing a grid-like layout and placing the widgets, I'm wondering if it's possible to add a textbox through drag-and-drop."

answered