@@ -47,7 +47,7 @@
</Border>
- <local:DeliveredOnSiteGrid Grid.Row="1" Margin="0,2,0,0" x:Name="Items" />
+ <local:DeliveredOnSiteGrid Grid.Row="1" Margin="0,2,0,0" x:Name="Items" OnReconfigure="Items_OnReconfigure"/>
</Grid>
@@ -45,7 +45,8 @@
<local:ProductsGrid
x:Name="Products"
- AfterRefresh="Products_AfterRefresh"/>
+ AfterRefresh="Products_AfterRefresh"
+ OnReconfigure="Products_OnReconfigure"/>
</dynamicgrid:DynamicSplitPanel.Master>
@@ -101,6 +101,6 @@
</syncfusion:SfGridSplitter>
<local:StockMovementGrid x:Name="Movements" AllowNullLocation="True" AllowNullBatch="True" Grid.Row="1"
- Grid.Column="2" />
+ Grid.Column="2" OnReconfigure="Movements_OnReconfigure"/>
</UserControl>
@@ -35,7 +35,7 @@
- <local:ReadyToGoGrid x:Name="Items" Grid.Row="1" Grid.Column="0" />
+ <local:ReadyToGoGrid x:Name="Items" Grid.Row="1" Grid.Column="0" OnReconfigure="Items_OnReconfigure"/>
@@ -30,7 +30,7 @@
</dynamicGrid:DynamicTabItem>
<dynamicGrid:DynamicTabItem x:Name="Products" Header="Products">
- <local:SupplierProductGrid x:Name="SupplierProducts" />
+ <local:SupplierProductGrid x:Name="SupplierProducts" OnReconfigure="SupplierProducts_OnReconfigure"/>
<dynamicGrid:DynamicTabItem x:Name="Spreadsheets" Header="Spreadsheets">
@@ -58,6 +58,7 @@
<TextBox x:Name="Search" Grid.Column="11" KeyUp="Search_KeyUp" />
- <local:TimesheetGrid x:Name="TimeSheets" Grid.Row="1" Margin="0,2,0,0" />
+ <local:TimesheetGrid x:Name="TimeSheets" Grid.Row="1" Margin="0,2,0,0"
+ OnReconfigure="TimeSheets_OnReconfigure"/>