I have a screen that is causing an error in the latest version of Intellij Idea. I did just update my Cuba App to 7.0.10 from 7.0.9. I get the following error:
Intellij version:
Code I am loading in the screen designer is:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<window xmlns="http://schemas.haulmont.com/cuba/screen/window.xsd"
caption="msg://editorCaption"
focusComponent="tblCustreps"
messagesPack="com.paslists.custfm.web.custreps">
<data>
<collection id="custrepsDc"
class="com.paslists.custfm.entity.Custreps"
view="custreps-view">
<loader id="custrepsDl">
<query>
<![CDATA[select e from custfm_Custreps e where e.cus = :cus order by e.rep.company, e.rep.contact]]>
</query>
</loader>
</collection>
</data>
<dialogMode height="600" width="800" modal="true" closeable="true"/>
<layout expand="editActions" spacing="true">
<table id="tblCustreps" dataContainer="custrepsDc" editable="true">
<actions>
<action id="add" type="add"/>
<action id="edit" type="edit"/>
<action id="remove" type="remove"/>
</actions>
<columns>
<column id="rep.company" editable="true"/>
<column id="rep.contact" editable="true"/>
<column id="commpcnt" editable="true"/>
</columns>
<buttonsPanel>
<button id="btnAdd" action="add" icon="ADD_ACTION"/>
<button id="btnEdit" action="edit" icon="EDIT"/>
<button id="btnRemove" action="remove" icon="REMOVE"/>
</buttonsPanel>
</table>
<hbox id="editActions" spacing="true">
<button action="windowCommitAndClose"/>
<button action="windowClose"/>
</hbox>
</layout>
</window>
Any ideas?