I could not able to hide the A3 case alone with the help of tailf:hidden debug;
Does it need to update any handler to achieve the functionality of hiding A3 leaf case alone.
choice src {
mandatory true;
case A1{
leaf A1 {
type cn-types:cn-filename;
tailf:info "A1";
mandatory true;
}
}
case A2 {
leaf A2{
type empty;
tailf:info "A2";
mandatory false;
}
}
case A3 {
leaf A3 {
tailf:hidden debug;
type cn-types:cn-filename;
tailf:info "A3";
}
}
}
Appreciate any help in this regard. Thanks in advance.