I have the same issue with the DataFormComboBoxField in a RadDataForm : (more detailed : http://www.telerik.com/forums/edit-lookup-values-with-dataformcomboboxfield )
Either i get the problem i first came for, either i have this one (with a GridViewComboBoxColumn or a DataFormComboBoxField):
<telerik:GridViewComboBoxColumn Header="Retour 2"
DisplayMemberPath="Name"
DataMemberBinding="{Binding Team, Mode=TwoWay}"
ItemsSource="{Binding Paths, Source={StaticResource EscortViewModel}}"
/>
With that, when i load the usercontrol, the value is not set/displayed in the column... BUT, when i change it, it calls the set of the viewmodel and update the ViewModel (so the displayed values).
What i can't find is how mix the two to display the data when the usercontrol is loaded AND update the value !
Thank you very much
Helloļ¼
I have a problem when using Windows8TouchTheme,
when alert in Windows8TouchTheme, the punctuations can not show incorrect.
but in windows7theme,it is all right.
I would like to set the selected PageSize when showing RadDiagramPrintPreview. How can I I achieve that as the PageInfo.PageSize property of RadDiagramPrintPreview is read only?
My diagram page size is set to Tabloid but when I lunch RadDiagramPrintPreview for my diagram the selected PageSize is set to letter.
I have a grid that has a cell validating event, which sets the isValid property of the edit to false when required. As expected, I am unable to move away from the cell until I correct the error. However, I notice that the grid is still updating the underlying VM with the incorrect value. Surely this is wrong.
This is causing me an issue, because the user can still initiate a save (due to a complicated winform/wpf integration), and as such persist the incorrect value.
Hi,
The question is similar to pie chart. Basically, I have a bar chart, and the feature I wanted is that:
When mouse hover on bar, the according category axis label can be highlighted (customized color) too. Same goes that when mouse is over category axis label, the according bar area will be highlighted.
Same as selection behavior, I can click on category axis label to make a selection, drag-area to do multiple selection from category axis label, same as I do this from data plot area.
Thanks,
Mingxue
Hi,
I'm using RadDiagramView on big diagram and I need to export png images.
png encoding and 91 dpi is ok for my needs, so I'm calling ExportToImage method leaving default parameters as follows:
using
(var stream = File.Open($
"{filename}.png"
, FileMode.Create))
{
radDiagram.ExportToImage(stream);
}
On big diagrams, i'm in trouble because the quality of exported images is very low (seems blurred); I cannot understand why.
I have cloned your github xaml sdk examples and pushed it on my personal account on this url https://gitlab.com/webartoli/repro-lowquality-exporttoimage-radtreeview. You can find a repro starting Diagram/Autoscrolling project.
Repro changes:
attached a picture with a comparison of the same shape on a small diagram (300 x 150px) and on a big diagram (6100 x 6100 px).
Am I doing something wrong ?
How can I manage properly all the options, in order to obtain the same quality regardless of the size of the diagram ?
Thanks
Claudio
Hi,
I have a DataForm in which there are two DataFormComboBoxField, one for the governorate and one for the delegation, and when I select a governorate in the first combo box, the ItemSource the 2nd combobox should contain the list of delagations that belongs to the selected governorate.
Thanks.