<
telerik:RadNumericUpDown
Name
=
"numericVMDNQRS"
NullValue
=
""
Value
=
"{Binding Path=Tier.VMDNQRS,ValidatesOnDataErrors=True,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}"
IsEditable
=
"True"
AutoReverse
=
"False"
Minimum
=
"0"
SmallChange
=
"0.1"
LargeChange
=
"1"
V
alueFormat
=
"Percentage"
DataContext
=
"{Binding}"
/>
Hi,
On my fields list I setting a custom display name.
When I dragged field from field list and I dropped to reportfilter/column label/ row label or values it keep the right name.
But when I drag field between reportfilter, column label, row label and values the dragged item show the Property name instead of the Display Name (see the attachment)
How can I fix it?
Thank you
I want to cancel the delete event and not delete the current record. I just want to edit the current record and set the property "IsActive = false".
1.
private void MyDataForm_DeletingItem(object sender, System.ComponentModel.CancelEventArgs e)
2.
{
3.
Person currentPerson = this.MyDataForm.CurrentItem as Person;
4.
currentPerson.IsActive = true;
5.
e.Cancel = true;
6.
}
This code does not work. How can I implement the function?
When binding to a dynamic object in the grid, we all know that the Dynamic column will be treated as an object and the cell templates will not be what is expected for some columns. Is there a property on the Column (I haven't found one digging in the source yet) to set the columns data type or do I need to use a Template Selector to achieve this per column that I don't want to be treated as a string?
Thanks,
Maurice
RadDiagram:
Bing's branding guidelines states, "Bing Maps data provider attribution information can be accessed through the Get Imagery Metadata method in Bing Maps REST Services."
https://www.microsoft.com/en-us/maps/mobile-brand-guidelines
I see there's an imagery metadata classes in RadMaps, but I don't see how to access or use them. Can you provide an example?
In one of our applications, we want to restrict access to a configuration page.
Throughout the application, we are using RadWindow.Alert, Confirm and Prompt as our UI messaging system.
We don't need a crazy overdoing of security to restrict the configuration page, but it would be nice if we could change the TextBox of the RadWindow.Prompt to be a PasswordBox so the contents of the box are not visible to anyone looking at the screen.
Is there any way to do this? I would rather stay with the consistent look/behavior of using the RadWindow since we are already using it in several other places.
Thanks!!
Paul
Hello,
I am trying to spellcheck certain controls in our project. However, whenever I make a call to RadSpellChecker.Check(this.textBox1, SpellCheckingMode.WordByWord), the corresponding spell checking window does not seem to load/open properly (there is just a transparent footprint of the window). Our project uses implicit themes and we suspect this is causing the problem. On a small test project (no implicit themes), the RadSpellChecker seems to work fine. Thank you.