View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0007116 | OXID eShop (all versions) | 2.3. Extensions (modules, themes) | public | 2020-04-09 10:42 | 2020-06-05 13:25 |
Reporter | leofonic | Assigned To | |||
Priority | high | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 6.2.0 | ||||
Fixed in Version | 6.2.2 | ||||
Summary | 0007116: Module class extensions cannot be sorted in backend | ||||
Description | When trying to rearrange the order of extended classes, javascript throws an error: Uncaught TypeError: Cannot read property 'safari' of undefined This can be fixed by upgrading jquery-ui to a newer version, but the "save"-button remains inactive nevertheless. | ||||
Tags | No tags attached. | ||||
Theme | Not defined | ||||
Browser | Not defined | ||||
PHP Version | Not defined | ||||
Database Version | Not defined | ||||
|
Confirmed for EE 6.2 and Browser Chrome QA - SG - |
|
>but the "save"-button remains inactive nevertheless. After upgrading to the newest jqueryui.min.js that can be fixed by changing line 34 in https://github.com/OXID-eSales/oxideshop_ce/blob/master/source/out/admin/src/js/widgets/oxmoduleslist.js#L34 from: $("#myedit [name=saveButton]").attr("disabled", ""); to: $("#myedit [name=saveButton]").prop("disabled", false); |
|
Quick patch here https://github.com/aggrosoft/oxid-patch-0007116/ |
|
...and now packaged as a pull request: https://github.com/OXID-eSales/oxideshop_ce/pull/801 |
|
Thx for making the pull request to fix it and thanks for checking this one. I just took it and put it to the next 6.2. patch |