By clicking search button in toolbar, advanced search window is opened.
In first row it contains combobox with selections AND and OR
How to replace those words with words in other language in this window ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The problem with localization is the bug in the lines where
jqFiltermethod will be called bysearchGridmethod. The methodjqFiltersupports groupOps option which are already set in many localization filesgrid.locale-XX.js, but thejqFiltermethod will be called without setting of the option.To fix the problem one should just add
to the list of options used in the call of
jqFiltermethod. You can search for the text).jqFilter({in thejquery.jqGrid.src.jsor in thejquery.jqGrid.min.jsto find the corresponding place. Injquery.jqGrid.min.jsof jqGrid 4.3.1 thepis renamed tofso one have to usegroupOps:f.groupOps.How you can see on the demo the grouping operation in the Advanced Searching dialog will be localized after applying the fix:
If your localized version of
grid.locale-XX.jsdon’t contains the texts for AND and OR operation you can set there manuallysee the next demo:
Without the described bug fix you can follow my suggestion from the answer on the close question.
UPDATED: I posted the corresponding bug report to trirand. I hope that the fix will be included in the main code of jqGrid.
UPDATED 2: The bug fix is already included in the main code of the jqgrid (see here).