Korean input error

There is a bug where if you input in Korean in a cell and then move the focus to another cell and input in Korean, the first letter is entered in English.





2 Replies

SP Sangeetha Priya Murugan Syncfusion Team June 17, 2022 12:48 PM UTC

Hi Kyung,


We have checked your reported issue and confirmed this as defect and the fix will be available in our July mid week patch release, we appreciate your patience until then. You can track the status of this defect using below link from our feedback portal, 


Feedback Portal Link:
https://www.syncfusion.com/feedback/35744/keyboard-languagekorean-first-letter-is-not-detected-properly-while-editing


Disclaimer: “Inclusion of this solution in the weekly release may change due to other factors including but not limited to QA checks and works re prioritization.”


Regards,

Sangeetha M



SP Sangeetha Priya Murugan Syncfusion Team July 13, 2022 08:43 AM UTC

Hi Kyung,


We are glad to announce that our weekly patch release (20.2.38) is rolled out. And we have included the fix for the reported issue in this release. So, kindly upgrade your package versions to the latest to avail of these changes (20.2.38).


Packagehttps://www.npmjs.com/package/@syncfusion/ej2-vue-spreadsheet 


Feedback Portal Link:  https://www.syncfusion.com/feedback/35744/keyboard-languagekorean-first-letter-is-not-detected-properly-while-editing 


Meanwhile, please use the below workaround solution to resolve this issue in your side.


Code Block:


  beforeCellRender: function (args) {

        if (args.rowIndex !== undefined && args.colIndex !== undefined) {

            args.element.contentEditable = 'true';

        }

    },

 

<style>

 

  .e-spreadsheet .e-table tr .e-cell {

            caret-color: transparent;

        }

        .e-spreadsheet .e-table tr .e-cell::selection {

            background-color: inherit;

            color: inherit;

        }

</style>

 


For your convenience we have prepared the sample based on our suggestion. Please find the link below.


Sample Link: https://www.syncfusion.com/downloads/support/directtrac/general/ze/vue3-ej2-spreadsheet-1398193250


Could you please check the above links and get back to us, if you need any further assistance on this.


Regards,

Sangeetha M


Loader.
Up arrow icon