Hello!
I recently started using RadFilter control instead of the filters that were inside the radgrid, but I can't get to hide the uniqueId on the RadFilter options even though it doesn't show on my radgrid.
I am building dinamically my radgrid, so I am not sure where to write or if it is possible to set "allowFiltering to false"
I am attaching an image where it shows "unique Id" as a filter option even though it doesn't show up as a column on my radgrid
Thanks in advance!

I have a rad grid displaying info, a list of keys assigned to employees. Once a key is added in the list, the ONLY thing in the future that should be editable is the status column, which there will only be 3 options: lost, Found and Reassigned, and Assigned. Since there are only 3 options I want there, I do not want a text box for them to edit whatever status they want, only these options. I would like the text box to be a drop down list, if possible. I cannot figure out how to change this through any settings though, is this something that needs done in the code behind?
Attached is a picture for reference.

Hi to all
If i put a MultiColumnBox in RadGrid as soon as i click on the box the table of the results appears and disappears in half a second
If i write part of the key everything works fine.
Is this a bug, a feature or something else?
Thanks
Nicola
Hello,
I have an issue with RadCalendar : when the focus is in the textbox with the date and time and I press Enter, the day and the month automatically switch. For exemple, if the date is 11/07/2019 and I press Enter, the date changes to 07/11/2019. If I press Enter again, it switch back to 11/07/2019.
But, if the date is 25/07/2019, it don't change to 07/25/2019 (because this date is not valid).
Here's the code I'm using :
<asp:UpdatePanel ID="UpdatePanel10" runat="server" UpdateMode="Conditional"> <ContentTemplate> <telerik:RadDateTimePicker ID="DateDebut" runat="server" OnSelectedDateChanged="DateDebut_SelectedDateChanged" AutoPostBackControl="Both"> </telerik:RadDateTimePicker> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="btnPrev" EventName="Click" /> <asp:AsyncPostBackTrigger ControlID="btnNext" EventName="Click" /> </Triggers></asp:UpdatePanel><br>
I don't understand what is appening, if someone can please help me, it would be very kind.

i have used Below Code
<telerik:RadFileExplorer RenderMode="Lightweight"
OnClientLoad="OnClientLoad"
EnableFilterTextBox="true"
EnableViewState="true"
runat="server" ID="FileExplorer1" Width="800px" Height="400px"
EnableOpenFile="false"
EnableCopy="false"
EnableFilteringOnEnterPressed="true"
Configuration-EnableAsyncUpload="false">
<Configuration ViewPaths="~/MappedDir/" ></Configuration>
</telerik:RadFileExplorer>
Filter not working please help

| catid | catname | description |
|---|---|---|
I have a line chart with vertical lines on the ticks on the X-axis. My chart definition looks like this:
<telerik:RadHtmlChart ID="Chart" runat="server"> <PlotArea> <Series> <telerik:LineSeries DataFieldY="Year"> <TooltipsAppearance Visible="false"></TooltipsAppearance> <Appearance> <FillStyle BackgroundColor="#5dade2"></FillStyle> </Appearance> </telerik:LineSeries> </Series> <XAxis DataLabelsField="MONTH_NAME" Color="black" MajorTickType="None" MinorTickSize="2" MinorTickType="Outside"> <MajorGridLines Visible="false" /> <MinorGridLines Visible="true" /> </XAxis> <YAxis AxisCrossingValue="0" Color="black" MajorTickSize="2" Step="1"> <MajorGridLines Visible="false" /> <MinorGridLines Visible="false" /> </YAxis> </PlotArea> <ChartTitle Text="By Month - Average"></ChartTitle> <Legend> <Appearance BackgroundColor="Transparent" Position="Bottom" Visible="True"></Appearance> </Legend></telerik:RadHtmlChart>
It results in a chart that looks like the attached picture. Is there a way to turn off the vertical lines like the one I've outlined in red?
My step:
1. when i resized the column to 120px (example:before width is 100px)
2. It fired the button event after the resized the column through the javascript
3. I got: the value was 100px through "this.RadGrid1.MasterTableView.Columns[0].HeaderStyle.Width" , (but i want the width is 120px for save the persistence to the database)
My question:
How can i get the resized width value,after fire column resized?
