File tree 2 files changed +12
-13
lines changed
2 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 37
37
@if (signatureList .Count > 0 ) {
38
38
39
39
< div class = " col" >
40
- < DxDataGrid Data = " @signatureList"
41
- SelectionMode = " DataGridSelectionMode.None"
40
+ < DxGrid Data = " @signatureList"
42
41
CssClass = " mt-3"
43
- ShowPager = " false" >
44
- < DxDataGridColumn Field = " @nameof(SignatureInfo.Name)"
42
+ PagerVisible = " false" >
43
+ < DxGridDataColumn FieldName = " @nameof(SignatureInfo.Name)"
45
44
Caption = " Field Name" / >
46
- < DxDataGridColumn Field = " @nameof(SignatureInfo.IssuerName)"
45
+ < DxGridDataColumn FieldName = " @nameof(SignatureInfo.IssuerName)"
47
46
Caption = " Certificate Issuer Name" / >
48
- < DxDataGridColumn Field = " @nameof(SignatureInfo.SignerName)"
47
+ < DxGridDataColumn FieldName = " @nameof(SignatureInfo.SignerName)"
49
48
Caption = " Signer Name" / >
50
- < DxDataGridColumn Field = " @nameof(SignatureInfo.Verified)"
49
+ < DxGridDataColumn FieldName = " @nameof(SignatureInfo.Verified)"
51
50
Caption = " Is Signature Valid" / >
52
- < DxDataGridColumn Field = " @nameof(SignatureInfo.CertificateValid)"
51
+ < DxGridDataColumn FieldName = " @nameof(SignatureInfo.CertificateValid)"
53
52
Caption = " Is Certificate Valid" / >
54
- < / DxDataGrid >
53
+ < / DxGrid >
55
54
< / div >
56
55
} else if (FileIsLoaded ) {
57
56
< p class = " ml-3 mb-3" > The loaded file does not contain any signatures < / p >
68
67
69
68
70
69
List <SignatureInfo > signatureList = new List <SignatureInfo >();
71
- PdfDocumentSigner documentSigner ;
70
+ PdfDocumentSigner ? documentSigner ;
72
71
bool FileIsLoaded = false ;
73
72
74
73
async Task LoadDocument (InputFileChangeEventArgs e ) {
Original file line number Diff line number Diff line change 10
10
</PropertyGroup >
11
11
12
12
<ItemGroup >
13
- <PackageReference Include =" DevExpress.Blazor" Version =" 23.2.*-* " />
14
- <PackageReference Include =" DevExpress.Document.Processor" Version =" 23.2.*-* " />
15
- <PackageReference Include =" Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version =" 1.19.6 " />
13
+ <PackageReference Include =" DevExpress.Blazor" Version =" 24.1.5 " />
14
+ <PackageReference Include =" DevExpress.Document.Processor" Version =" 24.1.5 " />
15
+ <PackageReference Include =" Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version =" 1.21.0 " />
16
16
</ItemGroup >
17
17
18
18
</Project >
You can’t perform that action at this time.
0 commit comments