Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
9806 มุมมอง

I want to remove entire <group> tag from the view. And also, how to remove field which is associated with another <span>'s domain?

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hello Khulan
 

The group you want to remove, does it have any name or string given?

If yes than you can find it by xpath expression and try to search that given name or string of that group and replace.

<xpath expr="//group[@name='somename']" position="replace"/>

OR

<xpath expr="//group[@name='somestring'] position="replace"/>

If this doesn't work post the view here from which you are trying to remove the group.

Hope this helps !!

อวตาร
ละทิ้ง

It works like a charm (; expect that you need to replace @name by @string if you want to search for a string! <xpath expr="//group[@string='somestring'] position="replace"/>