Home General Discussion

About localization override

oxotnikoxotnik Member IT Monkey ✭
edited April 2018 in General Discussion
Good day.
Can`t override localization via Administration settings in web console service portal.
I thing i found error here (this is a developer console view of http://myportal_address/View/localizationAdmin):

jquery.min.js?v=842:4 [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
send @ jquery.min.js?v=842:4
2jquery.min.js Failed to load resource: the server responded with a status of 404 (Not Found)
send @ jquery.min.js?v=842:4
7kendo.all.min.js?v=842:51 Uncaught TypeError: e.editable is not a function
    at le (kendo.all.min.js?v=842:51)
    at init.editCell (kendo.all.min.js?v=842:52)
    at HTMLTableCellElement.<anonymous> (kendo.all.min.js?v=842:52)
    at HTMLDivElement.dispatch (jquery.min.js?v=842:3)
    at HTMLDivElement.r.handle (jquery.min.js?v=842:3)
le @ kendo.all.min.js?v=842:51
editCell @ kendo.all.min.js?v=842:52
(anonymous) @ kendo.all.min.js?v=842:52
dispatch @ jquery.min.js?v=842:3
r.handle @ jquery.min.js?v=842:3

Help me please with that. My version of portal is 8.4.2.2016

Best Answer

Answers

  • oxotnikoxotnik Member IT Monkey ✭
    edited April 2018
    @oxotnik
    Unfortunately this is a known issue with 8.4.2 of the portal.  Here is a fix:
    Add the following to CiresonPortal\Scripts\grids\gridBuilder.js at line 108:
    if (column.editable) {
    column.editable = function () {
    return true;
    }
    }
    else {
    column.editable = function () {
    return false;
    }
    }
    Thank you for your answer. I did what you read, but this not help. I try to restart cireson portal from iis, restart the cashbuilder and finally i restart iis.
  • Justin_WorkmanJustin_Workman Cireson Support Super IT Monkey ✭✭✭✭✭
    You may also need to flush your browser cache.
  • oxotnikoxotnik Member IT Monkey ✭
    You may also need to flush your browser cache.
    Thak you very mutch. It`s working now!
  • Jerry_VeldhuisJerry_Veldhuis Customer Advanced IT Monkey ✭✭✭
    @Justin_Workman - can you provide the PR# for this issue ? I'm seeing it in 8.6.1 and wondering when its scheduled for release.
  • Justin_WorkmanJustin_Workman Cireson Support Super IT Monkey ✭✭✭✭✭
    edited June 2018
    https://support.cireson.com/Problem/Edit/PR73640/
    I'm not sure of the timeline for release for this one.
    @seth_coussens
Sign In or Register to comment.