简体   繁体   中英

Kendo Grid, how to translate column menu?

I would like to translate column menu in Kendo Data grid (see image below).

在此处输入图片说明

Im able to translate messages and operators like this:

filterable: {
                mode: "row",
                messages: {
                    info: $translate.instant('SELECT'),
                    and: $translate.instant('AND'),
                    or: $translate.instant('OR')
                },
                operators: { // redefine the string operators
                    string: {
                        contains: $translate.instant('CONTAINS'),
                        doesnotcontain: $translate.instant('NOT_CONTAINS'),
                        startswith: $translate.instant('STARTS_WITH'),
                        endswith: $translate.instant('ENDS_WITH'),
                        eq: $translate.instant('IS_EQUAL_TO'),
                        neq: $translate.instant('NOT_EQUAL_TO')
                    }
                }
            },

How can I translate menu items?

Many thanks for any advice.

DataGrid has option for column menu messages

columnMenu: {
    messages: {
        columns: "Choose columns",
        filter: "Apply filter",
        sortAscending: "Sort (asc)",
        sortDescending: "Sort (desc)"
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM