내 문제는 다음과 같습니다. 아래에 표시된보기로 이동하면 disclosurepanel이 그리드와 큰 거리를 가지며 공개 패널 헤더를 클릭하면 "선택 테두리"가 나타납니다.하지만 브라우저를 새로 고침하면 모든 것이 그것이 있어야하는 위치에 그리고 disclosurepanel 헤더는 클릭 할 때 더 이상 선택되지 않습니다.DisclosurePanel 스타일링 버그?
<g:HTMLPanel>
<g:VerticalPanel>
<g:Grid>
<g:row>
<g:customCell>
<g:Button ui:field="editBTN" width="50px"></g:Button>
</g:customCell>
<g:customCell>
<g:Button ui:field="deleteBTN" width="50px"></g:Button>
</g:customCell>
<g:customCell>
<g:Label ui:field="date" width="100px"></g:Label>
</g:customCell>
<g:customCell>
<g:Label ui:field="begin" width="100px"></g:Label>
</g:customCell>
<g:customCell>
<g:Label ui:field="end" width="100px"></g:Label>
</g:customCell>
<g:customCell>
<g:Label ui:field="pause" width="100px"></g:Label>
</g:customCell>
<g:customCell>
<g:Label ui:field="sum" width="100px"></g:Label>
</g:customCell>
<g:customCell>
<g:Label ui:field="tasks" width="100px"></g:Label>
</g:customCell>
</g:row>
</g:Grid>
<g:DisclosurePanel>
<g:header>test</g:header>
</g:DisclosurePanel>
<g:DisclosurePanel>
<g:header>test</g:header>
<g:Grid>
<g:row>
<g:customCell>
<g:TextBox ui:field="fromDATEtbx" width="100px"></g:TextBox>
</g:customCell>
<g:customCell>
<g:TextBox ui:field="toDATEtbx" width="100px"></g:TextBox>
</g:customCell>
</g:row>
</g:Grid>
</g:DisclosurePanel>
</g:VerticalPanel>
</g:HTMLPanel>
이 알려진 버그/실수 : 나는 이런 ui.xml가 있나요?
yea 나는 devtools에서 무슨 일이 일어나는지 확인하려고했지만 couldnt는 지금까지 차이점을 발견했다. 개요를 none으로 설정하고 나중에 devtools를 다시 확인해보십시오. 그것이 효과가 있는지 알려 드리겠습니다. – kArvee