1

ExampleI'm using SAPUI5 version 1.76.0 but the WebIDE is marking the property 'seperatorStyle' (got added in 1.5x or 1.6x can't remember) of

<m:Breadcrumbs separatorStyle="GreaterThan" ... />

as error ("Property or event name does not exist for the control.")

Autocomplete is giving me the property and the values for the property and it is working too, only the linter seems to have troubles.

I have verified in Project settings that my version is 1.76.0 and in the manifest under sap.ui5->dependancies I have "minUI5Version": "1.76.0" too.

Anyone an idea what may cause the linter to mark it as error ?

Lumpenstein
  • 1,250
  • 1
  • 10
  • 27
  • 1
    Looks like we can't do anything about it. The same happens with properties that were introduced in versions above 1.63 (e.g. ``). And Web IDE runs with 1.63 currently. Not sure if it's related. – Boghyon Hoffmann Apr 16 '20 at 21:20

1 Answers1

1

Setting the project XML validator to Basic will resolve the issue.

Projet settings > XML > Validator = Basic XML

Setting option

santhosh
  • 463
  • 4
  • 15
  • With basic validation it no longers triggers an error if entering an unknown property or if I have a typo in one name. – Lumpenstein Mar 31 '20 at 06:30
  • Yes you are right, will try to dig deep and find it. Hope someone might have the solution to it. – santhosh Mar 31 '20 at 07:57