Hello excuse my English.
I need help to add a detail line under each line and is XamGrid detail line should appear only for the selected row.
My idea is to display a grid to display other information.
In the datagrid conventional is possible with RowDetailsTemplate, there is something similar in XamGrid silverlight applications?
Sample :
Thanks.
This issue comes when xamlGrid for which row details template is defined has no width (but container page has a scroll).
Issue can be fixed by restricting the xamGrid Width to container page and showing the scroll for the xamGrid instead.
Even I am getting this error.
Any luck fixing this?
Hi,
I am doing the same but getting following error :
Error: Unhandled Error in Silverlight Application Code: 4004 Category: ManagedRuntimeError Message: System.InvalidOperationException: MeasureOverride of element 'Infragistics.Controls.Grids.Primitives.ColumnLayoutTemplateRowCellsPanel' should not return PositiveInfinity or NaN as its DesiredSize. at System.Windows.FrameworkElement.MeasureOverride(IntPtr nativeTarget, Single inWidth, Single inHeight, Single& outWidth, Single& outHeight)
Is there any idea why I am getting this error?
Hello!I got the result he needed.
<
ig:XamGrid Grid.Row="0" x:Name="MyDataGrid" AutoGenerateColumns="false"> <ig:XamGrid.Columns> <ig:TextColumn Key="ProductID"/> <ig:TextColumn Key="ProductName"/> <ig:TemplateColumnLayout Key="UnitPrice"> <ig:TemplateColumnLayout.Template> <DataTemplate> <Grid><TextBox Text="{Binding UnitPrice}"/></Grid> </DataTemplate> </ig:TemplateColumnLayout.Template> </ig:TemplateColumnLayout> </ig:XamGrid.Columns></ig:XamGrid>