Is it possible to restrict the selections and shown options to just be the month and year and not show the days?
I have set the format to MMMM yyyy - which all works fine, I just do not want the days to show up to select from, just the months and year.
I have attached how the picker currently looks, but I do not want the calendar.
Thanks in advance.
Hi there,
I tried dragging and dropping a row into my RadGridView using the "Rows drag & drop" example from the "Progress Telerik UI for WinForms" application but I can't get it to work.
My need is to drag only one row and on the same grid.
Please, any suggestions?
Thank you very much.
When user manually types the filter value (only date) in RadDateTimeEditor adds current time, so the filter value becomes - %data %current time.
And filtering gives the empty table, because of values in datetime columns have 00:00:00 time.
How to set time to 00:00:00 instead of using current?
P.S. If user chooses value with DateTimePicker then filter value is %data 00:00:00 and filtering works fine.
Quick question about filtering. I have a ListView with several columns including a checkbox column. I want to filter the listview on one column ("Title'), based on a textbox value as the user types. I thought the below might work, but it doesn't seem to work, the filtering doesn't look right. Please tell me why this approach doesn't work. Thanks.
Code to add the filter:
private
FilterDescriptor _valueFilter;
_valueFilter =
new
FilterDescriptor(
"Title"
, FilterOperator.Contains,
""
);
lstvwLookups.FilterDescriptors.Add(_valueFilter);
Code to update the filter:
private
void
txtFilter_TextChanged(
object
sender, EventArgs e)
{
_valueFilter.Value = ((TextBoxChangedEventArgs)e).Text;
}
Hi all,
I have an issue. I am working on a C# WinForm with Telerik extension. The issue is that when I drag and drop a UI control to the WinForm, the controls do not appear on the form. Instead, the name of the control appears under the form as you can see in the attached photo. I think there is a mismatch of Telerik versions the one installed on my Visual Studio is different to the one previously used on the project. Any suggestions?
Thanks in advance.
How do I control the Font Size (and the Font in general) of the Tab Name? Not the content Font.
Hi Team,
Can we have a sample application to build RadTreeView with MVVM pattern in winforms application with basic CRUD operations.