Private/Angular/Component/List/ServerGrid/New-NgServerGridComponentHtmlToString.ps1
Function New-NgServerGridComponentHtmlToString([WebCsprojInfo]$webCsprojInfo, [TableInfo]$tableInfo) { [string]$result = @" <h2>put title here</h2> <div style="width: 1150px;"> <ag-grid-angular #agGrid style="width: 100%; height: 100px;" class="ag-fresh" [gridOptions]="gridOptions"> </ag-grid-angular> </div> "@ return $result } |