Hello,
I know this is an approved feature already. but no schedule of release yet.
Is there an alternative way at the moment in order to do this.?
I really need to use .xlsb
Regards,
John
I am using this template:
<
Style
TargetType
=
"telerik:TrackBallInfoControl"
>
<
Setter
Property
=
"Background"
Value
=
"White"
/>
<
Setter
Property
=
"Foreground"
Value
=
"#FF103766"
/>
<
Setter
Property
=
"BorderBrush"
Value
=
"Transparent"
/>
</
Style
>
And i am wonder how to reach other properties for example Pillar and the Dot color ?
Hello,
I want to achieve this : (see attached file for mockup)
GR01 GR02 GR03 ... ... ...
ErgoLimit1 | 1 | 3 | 5 |
ErgoLimit2 | 3 | 2 | 1 |
This is basically a grid with row headers.
My ItemsSource is an ObservableCollection of :
1.
public
class
MyDataSourceLine
2.
{
3.
public
string
GroupName {
get
;
set
; }
4.
public
int
ErgoLimit1Value {
get
;
set
; }
5.
public
int
ErgoLimit2Value {
get
;
set
; }
6.
}
I tried using RadGridView but does not look like a good fit as there are no way (correct me if i'm wrong) to set row headers.
Cells must be editable (at least for the rows ErgoLimit1 and ErgoLimit2)
Columns are not fixed : every MyDataSourceLine should add a column.
Appreciate help on this as I spent already a lot of time trying to figure out how do to this, in vain :(
If it's not possible with RadGridView, i can change to another telerik control.
Thanks in advance !
How to keep the appointment creation dialog box open when validating the entries. So if I leave the subject (or start, end time) blank, I will like to show a message box and KEEP THE APPOINTMENT DIALOG OPEN.
All the events I have created on radschedulerview, fire after the appointment dialog closes.
Events like
radScheduler1_AppointmentCreating
radScheduler1_AppointmentSaving
'radScheduler1_AppointmentCreated',
all fire AFTER the dialog closes. I need to not close the appointment dialog when the subject etc are left blank.
Thanks
Help!
Robin
Hi - I'm looking for the source code/project for 'ChartView Live Data' - see attached pic. I can run the code in the 'UI for WPF' tool but I cannot find the same example in the xaml-sdk. It is available in the Windows version but not the WPF version.
The UI for WPF shows the code files but when trying to create a project I'm getting many errors because of the 'QuickStart' code... Does anyone have the VS project code for this or know where I can download it? ty much
At the moment, validation only appears when you hover over the cell that didn't pass validation. Is there a way to show the validation without the mouse hovering?
http://i.imgur.com/zvWqKn6.png
Hi,
I have some problems in building a radGridView with radiobutton inside in XAML. You can see the attached image to have an idea of what I'm doing.
I have a grid that contains a list of "container" (they could be one, 2 or more). So every row has a plate(with an id) and 2 radio button (ground - Upper). I retrieve the value of these radiobutton from the DB. Radio button Ground is selected when the variable IsUtiInDoubleStakerHold == 0. If IsUtiInDoubleStakerHold == 1radiobutton Upper has to be selected; if radiobutton Ground is selected, radiobutton Upper cannot be selected and vice versa. For every row I need to select a radio button, and then I have to save the value eventually modified. How can I do this? Actually with this code if I do a choice of a value in the first row, then when I make a selection on the second row, I lost the value of the radiobutton selected in the first row (I can't see anymore the selection done before).
How can i solve this problem?
After that, how can I maintain the value changed in every row? (I hope to save everything in the object public ObservableCollection<ItuForYard> ItusSameGroupList)
The xaml RadGridView is defined in this way:
01.
<
StackPanel
Grid.Row
=
"3"
>
02.
<
telerik:RadGridView
03.
SelectedItem
=
"{Binding SelectedItu, Mode=TwoWay}"
04.
ShowColumnSortIndexes
=
"False"
05.
ItemsSource
=
"{Binding ItusSameGroupList, Mode=TwoWay}"
06.
Visibility
=
"{Binding GridItusSameGroupVisibility}"
07.
Margin
=
"0,10,0,10"
>
08.
<
telerik:RadGridView.Columns
>
09.
<
telerik:GridViewDataColumn
t:I18N.Translate
=
"ITU Id"
DataMemberBinding
=
"{Binding UtiId}"
Width
=
"0"
IsVisible
=
"False"
/>
10.
<
telerik:GridViewDataColumn
t:I18N.Translate
=
"ITU Plate"
DataMemberBinding
=
"{Binding UtiPlate}"
Width
=
"4*"
/>
11.
<
telerik:GridViewDataColumn
t:I18N.Translate
=
"Ground"
Width
=
"3*"
>
12.
<
telerik:GridViewDataColumn.CellTemplate
>
13.
<
DataTemplate
>
14.
<
RadioButton
GroupName
=
"GroundUpper"
Content
=
"{Binding RadioButtonGround}"
HorizontalAlignment
=
"Center"
IsChecked
=
"{Binding RadioButtonGroundIsChecked, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
IsEnabled
=
"{Binding IsGroundUpperRadioButtonEnabled}"
/>
18.
</
DataTemplate
>
19.
</
telerik:GridViewDataColumn.CellTemplate
>
20.
</
telerik:GridViewDataColumn
>
21.
<
telerik:GridViewDataColumn
t:I18N.Translate
=
"Upper"
DataMemberBinding
=
"{Binding IsUtiInDoubleStakerHold}"
Width
=
"3*"
>
22.
<
telerik:GridViewDataColumn.CellTemplate
>
23.
<
DataTemplate
>
24.
<
RadioButton
GroupName
=
"GroundUpper"
Content
=
"{Binding RadioButtonUpper}"
25.
HorizontalAlignment
=
"Center"
26.
IsChecked
=
"{Binding RadioButtonUpperIsChecked, Mode=TwoWay,
UpdateSourceTrigger=PropertyChanged}"
27.
IsEnabled
=
"{Binding IsGroundUpperRadioButtonEnabled}"
/>
28.
</
DataTemplate
>
29.
</
telerik:GridViewDataColumn.CellTemplate
>
30.
</
telerik:GridViewDataColumn
>
31.
</
telerik:RadGridView.Columns
>
32.
</
telerik:RadGridView
>
33.
</
StackPanel
>
In the cs file:
public bool IsGroundUpperRadioButtonEnabled => SelectedItu != null &&
SelectedItu.IsUtiInDoubleStakerHold != 2;
public Visibility GridItusSameGroupVisibility => SelectedItu != null ? Visibility.Visible : Visibility.Collapsed;
public bool RadioButtonGroundIsChecked => SelectedItu != null && SelectedItu.IsUtiInDoubleStakerHold == 0;
public bool RadioButtonUpperIsChecked => SelectedItu != null && SelectedItu.IsUtiInDoubleStakerHold == 1;
public ObservableCollection<ItuForYard> ItusSameGroupList { get; set; } = new ObservableCollection<ItuForYard>();
Then I populate the list of container with the result from the DB
ItusSameGroupList = new ObservableCollection<ItuForYard>(ituResponse.Result);