In GridViewRowTemplate - ValueStates - RowInvalid VisualState, there is a storyboard to change ErrorIndicator.Visibility to Visible, but how can I change it in code behide?
I've tried
VisualStateManager.GoToElementState(row, "Invalid", true);,but it seems no working.
1.
I have a radgridview, which contains RadRibbonGroups, which contains comboxboxes and textboxes.
However, I would also like to be able to resize the textboxes and comboboxes in the medium state. I could program it in XAML if I knew how to bind to the RadRibbonGroup to get the current variant used. Or how to use wrap my controls in RadCollapsiblePanel inside the ribbongroup and bind to a property which contains the current state (small, medium, large).
? Is there a way to bind to the the current size variant of the group? I dont know which property to use.
2.
On another RadGridView, the RadRibbonGroups does not contain RadCollapsiblePabel and when it collapses, it collapses into a single collapse into a single button with an (ugly) standard picture.
? Is there any way to change this picture?
Thanks
Hi,
I am working on an application where I have to display the Current Time Indicator in UTC but there is no option or property to set it on the control.
Is there a way to do this? Do you plan to have this in the next release (The R2 2017 release of UI for WPF)?
I found a similar issue here: http://www.telerik.com/forums/currenttimeindicator-in-utc
Kind regards,
Soares
Hello everybody,
I have a RaDiagram which will be filled via MVVM.
Additionally my shapes and connections have custom properties - for the sake of convenience let's say every shape has a status property.
I customized the SettingsPane, so when entering a shape's SettingsPane I have a checkbox which changes the status property of the shape.
Checked -> shape.status = 1
Unchecked -> shape.status = 0
This is working fine.
Additionally I have a flag in my ViewModel which will be updated after the status change, so that my CanExecuteUndoCommand will set
1.e.CanExecute = True2.e.Handled = TrueUnfortunately the UndoRedoStack of the diagram tells me that there is nothing in the stack.
Hello Team,
I am getting 2 times row loaded getting fired in my application. How to handle this problem.
More detail : First time e.Row is GridViewHeaderRow and Second time e.Row is GridViewFooterRow.. But we are not using Footer row in our application.
How to handle this situation any help .
Thanks,
Sundar M.
itemsSource.Add(new Rap1DDataPoint(valuesX[i], valuesY[i],curve.CurveName));public class Rap1DDataPoint : DataPoint{ public string CurveName { get; set; } public Rap1DDataPoint(double x, double y, string curveName):base(x,y) { CurveName = curveName; }}var lineSeries = new ScatterLineSeries { ShowLabels = true, ToolTip = legendHeader, Stroke = serieColor, StrokeThickness = 2, //LegendLabel = legendHeader, //SeriesDefinition = splineSeriesDefinition, ItemsSource = itemsSource, XValueBinding = new PropertyNameDataPointBinding("XValue"), YValueBinding = new PropertyNameDataPointBinding("YValue"), PointTemplate = pointTemplate };