We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jmix version: 2.3.999-SNAPSHOT
DataGridEditor gets columns by keys. In this case, it is implied that the column key will be equal to the value of the entity meta property name.
<columns resizable="true"> <column property="username" editable="true"/> <column key="firstname" property="firstName" editable="true"/> <column property="lastName"/> <column property="email"/> <column property="timeZoneId"/> <column property="active"/> </columns>
However, there may be cases when the key value is specified explicitly, then there will be an error here:
jmix/jmix-flowui/flowui/src/main/java/io/jmix/flowui/component/grid/editor/DataGridEditorImpl.java
Lines 412 to 417 in 1e7d34b
Also, consider the case with repeating properties:
<columns resizable="true"> <column property="username" editable="true"/> <column key="username2" editable="true"/> <column property="firstName"/> <column property="lastName"/> <column property="email"/> <column property="timeZoneId"/> <column property="active"/> </columns>
The text was updated successfully, but these errors were encountered:
KremnevDmitry
Successfully merging a pull request may close this issue.
Environment
Jmix version: 2.3.999-SNAPSHOT
Bug Description
DataGridEditor gets columns by keys. In this case, it is implied that the column key will be equal to the value of the entity meta property name.
However, there may be cases when the key value is specified explicitly, then there will be an error here:
jmix/jmix-flowui/flowui/src/main/java/io/jmix/flowui/component/grid/editor/DataGridEditorImpl.java
Lines 412 to 417 in 1e7d34b
Also, consider the case with repeating properties:
The text was updated successfully, but these errors were encountered: