Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
8920
changing buttons label dynamically in the dialog window and suppressing tool tips.
posted

This is simple dialog that gets open by pressing button as on the sample : 

<igx-dialog #dialogUno title="LR4 US GAAP Legal Entity to Tax One Source Data Upload"
leftButtonLabel= "Cancel"
(onLeftButtonSelect)="dialogUno.close()">
<file-uploader (onCompleteItem)="onCompleteItem($event)" ></file-uploader>
</igx-dialog>
1. If component has variable buttonLbl : string  and it's value changing dynamically.. how to bind it to the leftButtonLabel  means if value of the buttonLbl is changing from "Cancel" to "Close" --> how to assign it to the leftButtonLabel of the template... 
2. On every element inside dialog there is a tool tip the one that is in the title.. how to suppress it while leaving the title of the dialog to be displayed.
Thanks.