この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
How to remove empty div generated (<div class="col-12 col-md-8 "></div>) if parys is included with below sightly code and parsys node do not contains any child node i.e. no component dragged and dropped in parsys :
<div class="col-12 col-md-8 " data-sly-resource="${'col' @ resourceType='wcm/foundation/components/parsys'}"></div>
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
To avoid this use one dummy class in empty divs e.g. req-div
<div class="img-div req-div"></div>
$('div:empty').not('.req-div').remove();
表示
返信
いいね!の合計
Existing code has the same way of including parsys at nearly 90 places, putting the check in all these places looks a bit messy.
Any other cleaner approach ?
表示
返信
いいね!の合計
This approach hides required div(s) too, like in case of image where image is loaded based on class or style attribute of an empty div. If I try to exclude the existing image classes , if a new image class gets added in code, this will break again.
表示
返信
いいね!の合計