[MGNLUI-1805] Leaving the focus on a cell being edited expands the row it belongs to Created: 29/Jun/13 Updated: 04/Sep/13 Resolved: 04/Jul/13 |
|
| Status: | Closed |
| Project: | Magnolia UI |
| Component/s: | tree/list |
| Affects Version/s: | 5.0 |
| Fix Version/s: | 5.0.1 |
| Type: | Bug | Priority: | Critical |
| Reporter: | Federico Grilli | Assignee: | Mikaël Geljić |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Issue Links: |
|
||||||||
| Template: |
|
||||||||
| Acceptance criteria: |
Empty
|
||||||||
| Task DoD: |
[ ]*
Doc/release notes changes? Comment present?
[ ]*
Downstream builds green?
[ ]*
Solution information and context easily available?
[ ]*
Tests
[ ]*
FixVersion filled and not yet released
[ ] 
Architecture Decision Record (ADR)
|
||||||||
| Bug DoR: |
[ ]*
Steps to reproduce, expected, and actual results filled
[ ]*
Affected version filled
|
||||||||
| Date of First Response: | |||||||||
| Description |
|
Sorry for the clumsy summary but I could not word it better. I think this the very issue which makes the inplace editing tree still rather awkward to use. To reproduce
Expected outcome
Actual outcome
|
| Comments |
| Comment by Jozef Chocholacek [ 02/Jul/13 ] |
|
The
Node root = session.getRootNode();
Node visibleRoot = root.addNode(NODE_ROOT_ITEM_ID);
Node parent = visibleRoot.addNode(NODE_PARENT);
Node node = parent.addNode(NODE);
node.addNode(NODE_CHILD);
node.setProperty(NODE_PROPERTY, "112");
part is the same in each test - so it should go to the setUp() method. |
| Comment by Mikaël Geljić [ 02/Jul/13 ] |
|
I do not agree. |
| Comment by Mikaël Geljić [ 04/Jul/13 ] |
|
1. One UI test had to be ignored with first solution |
| Comment by Mikaël Geljić [ 04/Jul/13 ] |
|
Fixed by no longer triggering workbench select from the browser presenter on editing nodes. Their itemId (identifier - used to be path) doesn't change anymore when editing. We keep that workbench reselect for properties - itemId still changes when renaming, but it has no bad effect on editing, properties cannot be expanded anyway. |