I've got a radgrid, with a filter setup like so
When I add a filter to the on a date column type, I'd expect the date to be in the format appropriate for the culture I use. (DD/MM/YYYY in this case). However when a date is either typed, or selected from the calender popup, it formats itself to the default en-US format (MM/DD/YYYY). Have I missed a step?
On a slightly related question, is it possible to modify the radfilter object to remove the calender and/or time popups from appearing?
myGrid = new RadGrid();myGrid.ID = "ClientBoundGrid";myGrid.Culture = new System.Globalization.CultureInfo("en-GB");//...initialise rest of gridmyGridRadFilter = new RadFilter{ ID = "myGridFilter", FilterContainerID = "ClientBoundGrid", Culture = new System.Globalization.CultureInfo("en-GB")};myGridRadFilter.ApplyExpressions += new EventHandler<RadFilterApplyExpressionsEventArgs>(myGrid_Filter_Apply);When I add a filter to the on a date column type, I'd expect the date to be in the format appropriate for the culture I use. (DD/MM/YYYY in this case). However when a date is either typed, or selected from the calender popup, it formats itself to the default en-US format (MM/DD/YYYY). Have I missed a step?
On a slightly related question, is it possible to modify the radfilter object to remove the calender and/or time popups from appearing?