
|
If you were logged in you would be able to see more operations.
|
|
|
Flex SDK
Created: 09/10/07 04:58 AM
Updated: 09/10/07 12:34 PM
|
|
| Component/s: |
mx: DataGrid
|
|
Security Level:
|
Public
(All JIRA Users
)
|
|
| Severity: |
Incorrectly Functioning with Workaround
|
| Reproducibility: |
Every Time
|
| Discoverability: |
Medium
|
| Found in Version: |
SDK Flex2.0.1 - HotFix 3 (Released)
|
| Affected OS(s): |
All OS Platforms
- All
|
| Steps to Reproduce: |
Steps to reproduce:
1.run testcase
2.sort Name on DG to click the header
3.to update the data, input 2, 2, and xyz at Row, Col, setValue at the top of the app
4.click setCellData
Actual Results:
the bottom of dg, additonal line were added
Expected Results:
no additional line
Workaround (if any):
Steps to reproduce:
1.run testcase
2.sort Name on DG to click the header
3.to update the data, input 2, 2, and xyz at Row, Col, setValue at the top of the app
4.click setCellData
Actual Results:
the bottom of dg, additonal line were added
Expected Results:
no additional line
Workaround (if any):
|
| Language Found: |
English
|
| Bugbase Id: |
none
|
| Triaged: |
Yes
|
| Regression: |
No
|
| QA Owner: |
Robert Vollmar
|
| Resolved by: |
Robert Vollmar
|
| Participants: |
Haruhide Yasukawa and Robert Vollmar
|
| Browser: |
Other (specify version)
|
| JDK: |
Sun 1.5.x
|
|
All
|
Comments
|
|
Sort Order:
|
|
// Original code
// var obj:Object = dg.dataProvider[Row];
// obj[dg.columns[Col].dataField] = Object(strVal);
// arrData.setItemAt(obj, Row);
// New code
var obj:Object = ObjectUtil.copy(dg.dataProvider[Row]);
obj[dg.columns[Col].dataField] = Object(strVal);
arrData.setItemAt(obj, Row);