Hi, i have the following Radgrid with two columns based on GridViewComboBoxColumn
The grid works fine.
My problem is these columns apper initialy blank.
It needs a simple click to show its values.
Please see attached screen shots.
Thanks
Ricardo
The grid works fine.
My problem is these columns apper initialy blank.
It needs a simple click to show its values.
Please see attached screen shots.
Thanks
Ricardo
<
telerik:RadGridView
HorizontalAlignment
=
"Left"
Margin
=
"12,63,0,0"
Name
=
"radGridView1"
ItemsSource
=
"{Binding ElementName=projectDomainDataSource, Path=Data}"
VerticalAlignment
=
"Top"
Height
=
"375"
Width
=
"614"
AutoGenerateColumns
=
"False"
SelectionChanged
=
"radGridView1_SelectionChanged"
SelectedCellsChanged
=
"radGridView1_SelectedCellsChanged"
PreparingCellForEdit
=
"radGridView1_PreparingCellForEdit"
BeginningEdit
=
"radGridView1_BeginningEdit"
CanUserInsertRows
=
"True"
CanUserDeleteRows
=
"False"
IsReadOnly
=
"False"
CellValidated
=
"radGridView1_CellValidated"
CellValidating
=
"radGridView1_CellValidating"
CanUserFreezeColumns
=
"False"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewComboBoxColumn
Header
=
"Cliente"
DataMemberBinding
=
"{Binding Customer_ID}"
UniqueName
=
"Customer"
ItemsSource
=
"{Binding ElementName=customerDomainDataSource, Path=Data}"
SelectedValueMemberPath
=
"ID"
SortMemberPath
=
"Name"
ItemTemplate
=
"{StaticResource ComboBoxCustomTemplate}"
telerik:TextSearch.TextPath
=
"ShortName"
DisplayMemberPath
=
"ShortName"
IsVisible
=
"True"
SortingState
=
"Ascending"
/>
<
telerik:GridViewDataColumn
x:Name
=
"ShortDescription"
IsReadOnly
=
"False"
IsFilterable
=
"True"
TextAlignment
=
"Left"
Header
=
"Descrição Curta"
DataMemberBinding
=
"{Binding ShortDescription}"
Width
=
"*"
/>
<!--<
telerik:GridViewDataColumn
x:Name
=
"ResponsibleArea"
IsReadOnly
=
"False"
IsFilterable
=
"True"
TextAlignment
=
"Left"
Header
=
"Área responsável"
DataMemberBinding
=
"{Binding ResponsibleArea}"
Width
=
"*"
/>-->
<
telerik:GridViewComboBoxColumn
Header
=
"Área responsável"
DataMemberBinding
=
"{Binding ResponsibleArea}"
UniqueName
=
"Area"
ItemsSource
=
"{Binding ElementName=areaDomainDataSource, Path=Data}"
SelectedValueMemberPath
=
"Id"
DisplayMemberPath
=
"Description"
/>
<
telerik:GridViewDataColumn
x:Name
=
"LongDescription"
IsReadOnly
=
"False"
IsFilterable
=
"True"
TextAlignment
=
"Left"
Header
=
"Descrição Longa"
DataMemberBinding
=
"{Binding LongDescription}"
Width
=
"*"
/>
<
telerik:GridViewDataColumn
x:Name
=
"Id"
IsReadOnly
=
"True"
IsFilterable
=
"True"
TextAlignment
=
"Center"
Header
=
"ID"
DataMemberBinding
=
"{Binding Id}"
Width
=
"*"
IsVisible
=
"False"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>