0
Good Night,
I am developing a system, in which depending on the option the user choose in the first option
, other options will appear in a second option
,
this would be the options in the first option
on my controller
$scope.teste = [
{nome : 'A'},
{nome : 'B'},
];
if the user chooses option A, these options have to appear in the second option
$scope.teste1 = [
{nome : 'A1'},
{nome : 'A2'},
{nome : 'A3'},
];
and if you choose option B, these options appear
$scope.teste2 = [
{nome : 'B1'},
{nome : 'B2'},
{nome : 'B3'},
];