We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5719539 commit a87836dCopy full SHA for a87836d
1 file changed
src/app/lists/combo/simple-combo-cascading/simple-combo-cascading.component.ts
@@ -25,6 +25,7 @@ export class SimpleComboCascadingComponent implements OnInit {
25
public countryChanging(e: ISimpleComboSelectionChangingEventArgs) {
26
this.selectedCountry = e.newSelection as Country;
27
if (e.newSelection){
28
+ this.regionData = [];
29
this.isLoadingRegions = true;
30
this.loadingTime = 2000;
31
}
@@ -43,6 +44,7 @@ export class SimpleComboCascadingComponent implements OnInit {
43
44
public regionChanging(e: ISimpleComboSelectionChangingEventArgs) {
45
this.selectedRegion = e.newSelection as Region;
46
47
+ this.citiesData = [];
48
this.isLoadingCities = true;
49
50
0 commit comments