Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is improvement for QE report data (GTL) API, new method, bug fixes and improvements.
New method:
sendDataWithRx({controller: 'reportDataController', action: 'is_displayed', data: ['name_or_id']})
dataname_or_id
can be number or string, since simple comparison (==
) is used.Will query for item based on name or it's ID property. It will store either true or false in result object.
Bug fixes:
sendDataWithRx({controller: 'reportDataController', action: 'set_sorting', data: [{columnName: 'Name', isAscending: true}]})
Improvements
If someone will call for
get_item
orget_all_items
result item will now have cells as object with key and value, instead of array of object's value.