Hi,
i have a problem with german localization. Paging in the grid does'nt work any more when i set AutoDetectLocale(true).
The selection of the page size isn't working any more.
I have downloaded the latest version of Igniteui and modified the sample file Infragistics\2016.2\Ignite UI\Samples\IgniteUI.SamplesBrowser\Views\Loader\aspnet-mvc-helper.cshtml in this way:
@(Html.Infragistics() .Loader() .ScriptPath(Url.Content("~/igniteui/js/")) .CssPath(Url.Content("~/igniteui/css/")) .Resources("igGrid.*") .AutoDetectLocale(true) .Render() )
@(Html.Infragistics().Grid(Model).ID("grid").AutoGenerateColumns(false).Columns(column => { column.For(x => x.ID).HeaderText("ID").Width("100px"); column.For(x => x.ProductName).HeaderText("Name").Width("200px"); column.For(x => x.QuantityPerUnit).HeaderText("Quantity").Width("200px"); column.For(x => x.UnitPrice).HeaderText("Price").DataType("number").Format("currency").Width("130px"); }) .Features(features => { features.Sorting().Mode(SortingMode.Multiple); features.Paging(); }) .Height("400") .DataBind() .Render() )
Hello sbomholt,
I didn't receive any attachment from you either here or in the support ticket. Please attach the respective file here in the forum thread if it doesn't exceed the allowed size.
Regards,Tsanna
Hello Tsanna,
sorry for my late response. I have downloaded the latest version and changed one of your examples. This changes i have sent you in my support case. Replace this one file in your sample website and it doesn't work.
https://es.infragistics.com/my-account/support-case/CAS-183838-X1R6Y5
Greetings Stephan
I tested grid with German locale and regional settings and Paging works properly on my side. The issue may occur due to the version of the product. Which is the version you're currently using? Also I've attached a sample in this thread for your reference. The sample is created using jQuery widget instead with MVC wrapper, but I believe that the technology doesn't matter in this case.
Please let me know if you need further assistance.
Regards,
Tsanna
Sorry,
AutoDetectLocale will work in U.S. I have changed it to
@(Html.Infragistics() .Loader() .ScriptPath(Url.Content("~/igniteui/js/")) .CssPath(Url.Content("~/igniteui/css/")) .Resources("igGrid.*") //.AutoDetectLocale(true) .Regional("de") .Locale("de") .Render() )
Any change in this combobox is ignored: