I have a custom appointment object that needs to store resources of a certain type, for this I have an observablecollection.
Now I have my combobox with my resources in the editappointment window.
Jobb job = new Jobb()
{ StandardTid = 30, UppskattatPris = 250, ResourceName = "Klippning", DisplayName = "Klippning", ResourceType="Jobb" };
Jobb job2 = new Jobb()
{ StandardTid = 120, UppskattatPris = 650, ResourceName = "Färgning", DisplayName = "Färgning", ResourceType = "Jobb" };
ResourceType jobbet = new ResourceType("Jobb");
jobbet.Resources.Add(job);
jobbet.Resources.Add(job2);
jobbet.AllowMultipleSelection = true;
ResourceTypeCollection resourcetypelist = new ResourceTypeCollection();
resourcetypelist.Add(jobbet);
bokningView.ResourceTypesSource = resourcetypelist;
This shows up Ok. But how do i bind the selections from this combobox to my collection in my custom appointment ?
We need to send the grid sorting configuration to the backend system. Is the below approach using the UniqueName property going to be reliable? If not can you please advise on the most reliable means to get the information necessary to extract the bound property name.
Thank you.
foreach(Telerik.Windows.Controls.GridView.ColumnSortDescriptor desc in uxRadGridControl.SortDescriptors) { var x = desc.SortDirection; var f = desc.Column.UniqueName; }
Hi guys,
I would like to ask whether the rich text box can be highlighted in red and show validation message once the cursor is being mouse over to the richtextbox(as shown in the attached picture)?
Thank you.

Hi guys,
I would like to ask how select bookmark from the Hyperlink bookmark tab? (The bookmark show nothing to selected)
Furthermore, I can not even add bookmark, is there any add button for me to add hyperlink into the bookmarktab?
The picture is attached.

taking data from a db into the spreadsheet, and I have a column that is numbers, but they start with a zero (0123456789)
When the data goes in it is ok, but any edits to the cells that also contain a zero ie 01234, will turn into 1234.
How can I stop this from happening, as I require the leading zero to be there.
I would think this would also apply to any new lines been added, I would need this been stopped also.
Many thanks

Hi,
in the RadDocking control I have defined DocumentHost with RadPaneGroup. Inside that group I have many tabs (RadPanes). So now I want to move whole RadPaneGroup not separate RadPanes. I know it is possible with basic RadPaneGroup (not inside DocumentHost), but then headers of the tabs are on bottom and I want to display them on top?
Hello,
This is my first wpf thread and i have started working on window. I am trying to set RadWindow as mainwindow as i have seen and downloaded sample project by using the following post.
http://www.telerik.com/support/kb/wpf/window/details/how-to-use-radwindow-as-main-window
But when i copy and paste code in my project and runs, it open two windows one window is fine and displaying it as expected and second window shows the same window under the browser type window. Image is attach after an application runs. Please anyone help to rectify my issue.
Thanks in advance :).