or
I have the latest build. 2010 Q2 SP1.
I have an issue wtih the RadNumericUpDown minimum property. Let's say the minimum property is set to 5 and the Value Property is bound to an object that has not been set yet. The control appears initially with a value of 0 and you cannot change it using the updown buttons since moving it up does not meet the minimum value.
Any suggestions?
Here is my xaml:
<
ItemsControl
ItemsSource
=
"{Binding WorkingVentilatorOrder.VentilatorOrderParameterValueList_}"
>
<
ItemsControl.ItemTemplate
>
<
DataTemplate
>
<
StackPanel
Visibility
=
"{Binding EndTime, Converter={StaticResource NullVisibilityConverter}, ConverterParameter=visible}"
Margin
=
"10,5,10,5"
>
<
TextBlock
Text
=
"{Binding VentilatorParameter_.Name}"
Style
=
"{DynamicResource DialogTextBlockStyle}"
/>
<
telerik:RadNumericUpDown
Value
=
"{Binding Path=Value, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
Minimum
=
"{Binding VentilatorParameter_.MinValue, Converter={StaticResource NullValueConverter}, ConverterParameter=0}"
Maximum
=
"{Binding VentilatorParameter_.MaxValue, Converter={StaticResource NullValueConverter}, ConverterParameter=1000}"
ValueFormat
=
"Numeric"
/>
</
StackPanel
>
</
DataTemplate
>
</
ItemsControl.ItemTemplate
>
</
ItemsControl
>
Hi,
How can I pin the RadPane programmatically when I click on RadPane tab header?
Thanks
RJ
RadDocumentPane docPane = new RadDocumentPane();
docPane.Header = header;
docPane.Content =
"New Pane";
docPane.CanUserClose =
false;
paneGroup.Items.Add(docPane);
docPane.MakeFloatingDockable();
<
DockPanel
>
<
telerikData:RadDataFilter
Name
=
"radDataFilter"
DockPanel.Dock
=
"Top"
Source
=
"{Binding Items, ElementName=listResidents}"
Margin
=
"1"
/>
<
StackPanel
Orientation
=
"Horizontal"
Margin
=
"5,2.5,5,2.5"
DockPanel.Dock
=
"Top"
>
<
TextBox
x:Name
=
"textSearchAdvanced"
MinWidth
=
"192"
ToolTip
=
"Search Enities By LastName, FirstName, or TaxID(SSN)"
Text
=
"{Binding SimpleSearchText, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
/>
<
telerik:RadButton
x:Name
=
"btnFindAdvanced"
Width
=
"24"
Margin
=
"5 0"
HorizontalAlignment
=
"Right"
VerticalAlignment
=
"Center"
telerik:StyleManager.Theme
=
"{Binding Source={StaticResource settings}, Path=Default.CurrentTheme}"
Command
=
"{Binding SimpleSearchCommand}"
IsDefault
=
"True"
>
<
telerik:RadButton.Content
>
<
Image
Source
=
"../Resources/Search.png"
Height
=
"16"
Width
=
"16"
ToolTip
=
"Find Resident"
/>
</
telerik:RadButton.Content
>
</
telerik:RadButton
>
</
StackPanel
>
<
ListView
Margin
=
"5,2.5,5,2.5"
Name
=
"listResidents"
ItemTemplate
=
"{StaticResource ResidentTemplate}"
ItemsSource
=
"{Binding ResidentListing}"
ext:Selected.Command
=
"{Binding PersonSelectedCommand}"
/>
</
DockPanel
>