We believe most if not all of those separate reports should now be addressed.
This thread and its links are becoming a little difficult to track - to make it a bit easier, if you find that one or more is still outstanding, please start a new thread, with specifics only of the remaining issues, and a local code example specifically for the remaining issues.
Announcement
Collapse
No announcement yet.
X
-
Minor issue 2 from #15 seems to be fixed as well, is that correct?
Best regards
Blama
Leave a comment:
-
Hi Isomorphic,
thanks for fixing. It is working in the testcase from #10, the other thread from #22 and seems to be OK in my application now as well.
Thank you & Best regards
Blama
Leave a comment:
-
This is now fixed, along with a couple of other selection-based bugs in this scenario - you can test it out in tomorrow's builds
Leave a comment:
-
Apologies for the delay on this one, we see the issue and should have a fix in shortly - we'll update here when we do.
Leave a comment:
-
Hi Isomorphic,
do you have an update on this one? It is really strange for the user that the Item-textcolor looks disabled until entered.
Thank you & Best regards
Blama
Leave a comment:
-
Hi Isomorphic,
one issue 1: This works for me if I null the value-field first, only. This is different to your suggestion from #13. If I do like suggested, the value is not removed until I leave the rowEditor and the update returns.
Good:
Bad:Code:addChangedHandler(new ChangedHandler() { public void onChanged(ChangedEvent event) { int rowNum = event.getRowNum(); String gender = event.getValue().toString(); if (!"female".equals(gender)) { [B] listGrid.setEditValue(rowNum, "ReportsTo", (String) null); listGrid.setEditValue(rowNum, "ManagerName", (String) null);[/B] listGrid.setEditValue(rowNum, "Job", (String) null); } listGrid.refreshCell(listGrid.getEditRow(), listGrid.getFieldNum("ReportsTo")); listGrid.refreshCell(listGrid.getEditRow(), listGrid.getFieldNum("Job")); } });
Of course I do not care for the order, this is more of a FYI, as this contradict your advice.Code:addChangedHandler(new ChangedHandler() { public void onChanged(ChangedEvent event) { int rowNum = event.getRowNum(); String gender = event.getValue().toString(); if (!"female".equals(gender)) { [B] listGrid.setEditValue(rowNum, "ManagerName", (String) null); listGrid.setEditValue(rowNum, "ReportsTo", (String) null);[/B] listGrid.setEditValue(rowNum, "Job", (String) null); } listGrid.refreshCell(listGrid.getEditRow(), listGrid.getFieldNum("ReportsTo")); listGrid.refreshCell(listGrid.getEditRow(), listGrid.getFieldNum("Job")); } });
Best regards
Blama
Leave a comment:
-
On your first issue here, we see that if we null out hoth fields as we previously advised, then that works fine - that is, there are no misbehaviors that we see. The only issue is that the warning still shows - but it tells you how to prevent it from showing. Are you seeing something different?
The other two "minor issue"s are indeed wrong, but we agree are fairly minor, and we'll get to them soon.
Leave a comment:
-
Hi Isomorphic,
did you already fix this one? It seems to be still open in v10.1p_2016-03-20.
Best regards
Blama
Leave a comment:
-
Yes, it's reproduced and assigned to be fixed in the next day or so.
Leave a comment:
-
Hi Isomorphic,
can you reproduce the issues from #15?
Best regards
Blama
Leave a comment:
-
Hi Isomorphic,
ok, will open a new thread next time. I did not because all issues were in the editRow-area.
Issue 1:
I must update the value field first, otherwise I have the problem from post #10
Minor issue 2:
Sorry, I don't follow.
The displayField from the .ds.xml is shown, when not editing - This is OK.
The displayField from the optionDataSource-settings is shown after a short time when editing - This is OK.
Not OK is that if you start the editRow, for a short time there is the ID to see:
See that it is OK for manager="Rui Shu" and not OK for manager="Abigail Lippman". Sometimes it is also the other way around. Perhaps a timing issue?
Minor issue 3:
Gender=female rows do have the editors for Manager and Job/Title enabled. See the color change when entering the Manager-ComboBoxItem:
Best regards
Blama
Leave a comment:
Leave a comment: