"lines": {
"499": " {",
"500": " var client = (ServiceClientBase)GetClientWithUserPassword();",
"501": " client.AlwaysSendBasicAuthHeader = true;",
"611": " ((ServiceClientBase)client).UserName = EmailBasedUsername;",
"612": " ((ServiceClientBase)client).Password = PasswordForEmailBasedAccount;",
"613": "",
"664": " ((ServiceClientBase)client).UserName = EmailBasedUsername;",
"665": " ((ServiceClientBase)client).Password = PasswordForEmailBasedAccount;",
"666": "",
"713": " {",
"714": " var client = (IRestClient)GetClientWithUserPassword();",
"715": " ((ServiceClientBase)client).AlwaysSendBasicAuthHeader = false;",
"730": " {",
"731": " var client = (IRestClient)GetClientWithUserPassword();",
"732": " ((ServiceClientBase)client).AlwaysSendBasicAuthHeader = true;"
},
app.component.html:
<td class="text-wrap" style="min-width: 100px; max-width:300px;"
(click)="openDialog()"><span *ngFor="let line of getLinesArray(scan.lines);let
isLast=last">{{line}}{{isLast ? '' : ', '}}</span></td>
In this example i need to display only one line of data on table column and remaining i need to add click here(one line... click here to check) and if i click here then remaining lines should be displayed on mat dialog.
Thanks.