跳至内容
菜单
此问题已终结
3 回复
6563 查看

Hi, I'm trying to hide a page in a inherit view, with this sentence:

<page string="Sales & amp; Purchases " position="replace"/>

There is a blank space between & and amp here in the message because of the syntax, but in the xml file there is no blank space.

The question is that when i try to load the xml view, i have this error:

"Invalid XML for View Architecture!"

I have other sentences hiding other pages, and i have no problem, for example:

<page string="Accounting" position="replace"/>

The only problem is with the ampersand sign. Then i'm trying to hide this page with xpath expression, because in xpath i have no problem with ampersand, but Somebody knows how to do that? I mean, fix the ampersand error or hide it with xpath expression? Here is my path expression, its only a test to see if ampersand works, and it works!!! <xpath expr="/form/sheet/notebook/page[@string='Sales & Purchases']" position="inside"> <label string="test de label"/> </xpath>

形象
丢弃
最佳答案

hi antonio, try:

<page string="Sales" position="attributes"> <attribute name="invisible">1</attribute> </page>

maybe my post can help. (i dont have sufficient karma to post link, please search Set a notebook page invisible in inherited view in the forum. )

形象
丢弃
编写者 最佳答案

It doesn't work, the problem is in the "string" attribute. In this case, the string value is "Sales & Purchases", and i get an error when i put an ampersand in the string value, even with the format & amp;

形象
丢弃
最佳答案

I don't know where are you wanting to hide this anyways do this:

<xpath expr="//page[@string='Sales &amp; Purchases']" position="replace"/>

Or maybe this can work too:

<xpath expr="//page[@string='Sales & Purchases']" position="replace"/>

You only have to write the phrase as is in the XML

形象
丢弃
相关帖文 回复 查看 活动
9
8月 20
3718
1
9月 15
4384
1
3月 15
5523
0
3月 15
3701
1
3月 15
8183