Hi,
Is there a way to enable scrolling and set the grid to disabled?
Thanks
Not sure if in correct place for this one.
I have a winform radribbonbarbuttongroup that I would like to put a date picker in for the user to pick a date.
How do I add this in? Does not appear on the Add A Item drop down list in the Dev UI.
Thanks
The dialog uses InitialDirectory = "D:\Executech\Hotel\Documents"
To see the documents in the folder I must specify the parent folder of "Documents". If I use the same path as InitialDirectory, no files are seen.
This is my code that shows the files.
Private Sub saveFileDialog_DirectoryRequesting(ByVal sender As Object, ByVal e As DirectoryRequestingEventArgs) Handles RadSaveFileDialog1.DirectoryRequesting
If Not e.Directory.FullName.StartsWith("D:\Executech\Hotel") Then
e.Cancel = True
End If
End Sub
I have set the initial directory. But when the save dialog shows up, the left panel directory list is not expanded to Initial directory. It is expanded only when I click to select that initial directory. Is there a way that it is expanded "at the beginning" and have the location hints (breadcrumb) at the top?
Thanks.
RadSaveFileDialog saveFile = new RadSaveFileDialog();
saveFile.InitialDirectory = @"C:\NHPAYHO\data\";
saveFile.ExpandToCurrentDirectory = true;
DialogResult dr = saveFile.ShowDialog();
When I use DirectoryRequesting to set a user's root folder, the Tree Navigation Pane doesn't show the path. The only element that appears is "This PC" and if I cIick it I can't get back to the folder with the files. would prefer that it would show the specified folder as the root element in the Tree Navigation Pane since there will be multiple folders within this root folder.
Private Sub saveFileDialog_DirectoryRequesting(ByVal sender As Object, ByVal e As DirectoryRequestingEventArgs) Handles RadSaveFileDialog1.DirectoryRequesting
If Not e.Directory.FullName.StartsWith("D:\Executech\Hotel") Then
e.Cancel = True
End If
End Sub
I have a listbox and want to set some of the items as bold based on various criteria.
Example 1:
Listbox contains a list of all employees and I want to bold the employees who are listed as "working" in another table.
Example 2:
Listbox contains a list of ALL Products and I want to bold the ones that are that are in are on sale (as identified in another table).
I've looked at the examples of changing format based on selection or hover, but I can't figure out how to translate that into the above use cases.
I've created a chat, and are now about to set the last touch on the UI and what not. I'm trying to achieve a behavior that enables name on all of the messages (including the latest)
I've attached a image for better understaind.
Thanks in advance.
Hello there,
I'm using radgridview.It only highlights search results , but I want to hide all records except search results.Is there a way to do it? If so how can I do it?
getting error while opening excel file which have more than 400000 records.
We are facing the below issues on DateTimePicker
1st issue:
1) Enter the date, month & year.
2) If we highlight the whole date & update any value, year field is getting changed.
We need it to update from month date & year if it is fully highlighted.
2nd issue:
1) Enter the date, month & year.
2) If we click "Tab" it is getting focused on the next date time picker. When we go back to the previous datetimepicker it is focussing on the edited year.
It should focus on month on every datetimepicker.
Note : If datetimepciker is fully highlighted it should update on MM/DD/YYYY. Demo project & video link attached for your reference.