FlexGrid
Globalization
Features
Description
Globalization
By default, MVC controls format and parse the data using American English culture. The decimal symbol is a period, the thousand separator is a comma, and the days of the week are "Sunday" through "Saturday".
If your application targets other cultures, register the appropriate culture by registering the MVC scripts in your HTML pages.
For example, to localize an application for the German culture, register the "de" culture while registering the scripts:
<c1-basic-scripts />
</c1-scripts>
Customization
The client FlexGridFilter class is localizable, and you can take advantage of this feature for modifying the UI strings and also the lists of conditions and operators.
In this sample, we customized the list of operators by assigning custom arrays to the filter's stringOperators, numberOperators, dateOperators, and booleanOperators.
1 2 3 4 5 6 7 8 9 10 11 12 13 | using MvcExplorer.Models; using Microsoft.AspNetCore.Mvc; namespace MvcExplorer.Controllers { public partial class FlexGridController : Controller { public ActionResult Globalization() { return View(Sale.GetData(50)); } } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | @model IEnumerable< Sale > @section Scripts{ <script> var filter = wijmo.culture.FlexGridFilter; var Operator = wijmo.grid.filter.Operator; var stringOperators = filter.stringOperators; var customStringOperators = [ { name: '(not set)' , op: null }, { name: 'Same' , op: Operator.EQ }, { name: 'Different' , op: Operator.NE }, { name: 'Bigger' , op: Operator.GT }, // added { name: 'Smaller' , op: Operator.LT }, // added //{ name: 'Begins with', op: Operator.BW }, //{ name: 'Ends with', op: Operator.EW }, //{ name: 'Has', op: Operator.CT }, //{ name: 'Hasn\'t', op: Operator.NC } ]; var numberOperators = filter.numberOperators; var customNumberOperators = [ { name: '(not set)' , Operator: null }, { name: 'Same' , op: Operator.EQ }, { name: 'Different' , op: Operator.NE }, { name: 'Bigger' , op: Operator.GT }, //{ name: 'Is Greater than or equal to', op: Operator.GE }, { name: 'Smaller' , op: Operator.LT }, //{ name: 'Is Less than or equal to', op: Operator.LE } ]; var dateOperators = filter.dateOperators; var customDateOperators = [ { name: '(not set)' , op: null }, { name: 'Same' , op: Operator.EQ }, { name: 'Earlier' , op: Operator.LT }, { name: 'Later' , op: Operator.GT } ]; var booleanOperators = filter.booleanOperators; var customBooleanOperators = [ { name: '(not set)' , op: null }, { name: 'Is' , op: Operator.EQ }, { name: 'Isn\'t' , op: Operator.NE } ]; c1.documentReady( function () { customFilterUI(); }); function resetFilterUI() { filter.stringOperators = stringOperators; filter.numberOperators = numberOperators; filter.dateOperators = dateOperators; filter.booleanOperators = booleanOperators; } function customFilterUI() { filter.stringOperators = customStringOperators; filter.numberOperators = customNumberOperators; filter.dateOperators = customDateOperators; filter.booleanOperators = customBooleanOperators; } function handleCustomize(customize) { if (customize) { customFilterUI(); } else { resetFilterUI(); } } </script> } < c1-flex-grid id = "globalizationGrid" auto-generate-columns = "false" is-read-only = "true" selection-mode = "Row" sorting-type = "SingleColumn" group-by = "Product" class = "grid" > < c1-items-source source-collection = "Model" disable-server-read = "true" ></ c1-items-source > < c1-flex-grid-column binding = "ID" ></ c1-flex-grid-column > < c1-flex-grid-column binding = "Start" ></ c1-flex-grid-column > < c1-flex-grid-column binding = "End" format = "dddd hh:mm" ></ c1-flex-grid-column > < c1-flex-grid-column binding = "Country" ></ c1-flex-grid-column > < c1-flex-grid-column binding = "Product" ></ c1-flex-grid-column > < c1-flex-grid-column binding = "Color" ></ c1-flex-grid-column > < c1-flex-grid-column binding = "Amount" format = "c" ></ c1-flex-grid-column > < c1-flex-grid-column binding = "Amount2" format = "c" ></ c1-flex-grid-column > < c1-flex-grid-column binding = "Discount" format = "p0" ></ c1-flex-grid-column > < c1-flex-grid-column binding = "Active" ></ c1-flex-grid-column > < c1-flex-grid-filter default-filter-type = "Both" ></ c1-flex-grid-filter > </ c1-flex-grid > < label > < b > @Html .Raw(FlexGridRes.Globalization_Text5)</ b > @await Html.PartialAsync( "_CultureSelector" ) </ label > < label > < input id = "customize" type = "checkbox" checked onclick = "handleCustomize(this.checked);" /> < b > @Html .Raw(FlexGridRes.Globalization_Text6)</ b > </ label > @section Summary{ @Html .Raw(FlexGridRes.Globalization_Text7) } @section Description{ < h3 > @Html .Raw(FlexGridRes.Globalization_Globalization) </ h3 > < p > @Html .Raw(FlexGridRes.Globalization_Text0)</ p > < p > @Html .Raw(FlexGridRes.Globalization_Text1)</ p > < p > @Html .Raw(FlexGridRes.Globalization_Text2)</ p > < div class = "well" > <c1-scripts culture= "de" >< br /> <c1-basic-scripts />< br /> </c1-scripts> </ div > < h3 > @Html .Raw(FlexGridRes.Globalization_Customization) </ h3 > < p > @Html .Raw(FlexGridRes.Globalization_Text3)</ p > < p > @Html .Raw(FlexGridRes.Globalization_Text4)</ p > } |