You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a new input property hiddenActions to the dialog component. This property should allow hiding the actions (confirm and cancel buttons) when set to true.
Implementation Details:
Add the Input:
Introduce the hiddenActions property in the component:
@Input() hiddenActions: boolean=false;
Modify the Template:
Update the component's template to include the logic for displaying the actions. The actions should be hidden if hiddenActions is set to true.
Add a new input property
hiddenActions
to the dialog component. This property should allow hiding the actions (confirm and cancel buttons) when set totrue
.Implementation Details:
Add the Input:
hiddenActions
property in the component:Modify the Template:
hiddenActions
is set totrue
.Notes:
The text was updated successfully, but these errors were encountered: