I'm using i18n for localization in my project but whenever i change the language, all page's translate is okay except grid header names! Its getting normal when i refresh the page.How can fix this situation without refresh ?
Aggrid vue i18n: Grid header name not translated without refresh after change language
991 Views Asked by Özlem Uslu At
2
There are 2 best solutions below
Related Questions in VUE.JS
- jqBootstrapValidation() is not a function
- In Vue.js, change value of specific attribute for all items in a data array
- Vue.js - How to handle all elements with the same selector?
- How can I use Elixir + Vueify?
- Bind function on newly created element
- Vue.js Passing data to content scope
- Updating the DOM with change in an object (vue.js) - binding not working?
- websocket + vuejs: screen flickering, visible mustache code
- Vue.js nested v-repeat: How to access parent $index inside child?
- VueJS - trouble understanding .$set and .$add
- Difference between two similar functions, why is one working and the other not
- Display unescaped HTML in Vue.js
- Mouseover or hover vue.js
- vuejs: Trying to focus the input using v-el directive
- Vue.js component issue
Related Questions in AG-GRID
- Opening tool panel in ag-grid
- Ag-grid fullWidthCellRendererFramework adding my own properties
- Ag-grid and Angular2 using angular-cli
- Angular2 ag-grid-ng2
- ag-grid: column pinning not working
- event callback argument is empty
- Using ag-grid, how can I get the `api` attribute to not be null when working with angular 1.5 and directives?
- How to set cell style in ag-Grid while processing nodes?
- How to access a cell value when the column has been defined with ag-grid expression/value getters?
- How to get custom values for each richSelect in ag-grid
- Angular2 - Ag Grid - Get Parent Instance in Cell Renderer Component
- EXCEPTION: Error in html caused by: No provider for Ng2FrameworkFactory! ag-grid-ng2
- ag-grid how to delete row
- AGGrid - Angular2 - Object doesn't support property or method 'map'. SystemJS
- Removing styling from ag-grid output after render
Related Questions in VUE-I18N
- Dynamic localization in vue-i18n
- vue-i18n : how to use inside vue instance filter
- vue-i18n doesn't update locale after integrating vuex
- Escaping a pipe in a vue-i18n translation
- How to use $t from vue-i18n inside Vuex store to initialize static strings
- Vue.js: loop on <i18n> tag
- VUE i18n not able to translate error messages
- Vue i18n TypeError: Cannot read property '_t' of undefined
- i18n locale change in url and nested routes
- @nuxtjs/i18n works in development(dev) but fails in production (build)
- I can´t deploy a nuxt3 project with i18n Plugin
- How to generate translations in a Vue I18n app?
- How to use vue-i18n in Class Style Component(vue3)
- i18n is not working after update nuxt to 3.8.0
- I just used i18n-ally in one project, why don't I see the tool tab when I switch to another project with i18n Ally enabled?
Related Questions in AG-GRID-VUE
- AG-grid Vue not working with vuejs version 3
- ag-grid-vue: how to detect row click?
- Ag-Grid. How to send slots to "ag-side-bar"?
- AG Grid: Framework component is missing the method isFilterActive()
- Referencing another field in cellRenderer
- Ag Grid how to disable column sortable property in edit mode?
- Display the sum of a column that calculates the sum of rows, in the first cell of said column?
- Custom date cell editor for ag-grid in vue 3 with typescript and <script setup> syntax
- Aggrid vue i18n: Grid header name not translated without refresh after change language
- ag-grid filter popup not opening on mobile
- How do I refresh a cell using Vue3 composition and child to child communication with AG-Grid
- Increase width of ag-grid filter with specific column
- setFilter tooltip is not showing in filter list ag-grid
- Switch Row/Column for Ag-Grid charts
- Why am I getting an error when using Sass with AgGrid in laravel?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can fix this by calling the
refreshHeaderfunction on the reader API. try this :where the gridApi is the API object you get from the
onGridReadyevent params.EDIT, how to get the gridApi :
the gridApi u get from the params of the onGridReady method being called by the AgGrid component. if you are using reactJs, an attribute named onGridReady in your agGrid component would accept that function.