Compare commits
3 Commits
a46a82b466
...
a81fc649f0
| Author | SHA1 | Date |
|---|---|---|
|
|
a81fc649f0 | |
|
|
205c3aabd6 | |
|
|
b25f4f40c4 |
|
|
@ -134,7 +134,13 @@
|
||||||
<CompaniesNestedUserProductMapping CurrentCompany="(TIAM.Entities.ServiceProviders.Company)context.DataItem" KeyboardNavigationEnabled="true" />
|
<CompaniesNestedUserProductMapping CurrentCompany="(TIAM.Entities.ServiceProviders.Company)context.DataItem" KeyboardNavigationEnabled="true" />
|
||||||
</DetailRowTemplate> *@
|
</DetailRowTemplate> *@
|
||||||
<DetailRowTemplate>
|
<DetailRowTemplate>
|
||||||
<AddressDetailGridComponent DataSource="new List<Address> { ((Company)context.DataItem).Profile.Address }" OnAddressChanged="AddressChanged" KeyboardNavigationEnabled="true" />
|
|
||||||
|
|
||||||
|
@{
|
||||||
|
List<Address> RowData = new List<Address> { ((Company)context.DataItem).Profile.Address };
|
||||||
|
}
|
||||||
|
|
||||||
|
<AddressDetailGridComponent DataSource="RowData" OnAddressChanged="AddressChanged" KeyboardNavigationEnabled="true" />
|
||||||
</DetailRowTemplate>
|
</DetailRowTemplate>
|
||||||
<EditFormTemplate Context="EditFormContext">
|
<EditFormTemplate Context="EditFormContext">
|
||||||
@{
|
@{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue