Q4Widgets API Documentation

q4.regFilingsDetailIndex

Widget displaying the detail for a Non-EDGAR Regulatory filing. It expects that the URL contains both a RegFilingId and Institution parameter.

Resources:

Non-EDGAR Regulatory Filings Confluence page
Studio Public API documentation

Script link
q4.studioApi.3.0.0.min.js
Source file
q4.studioApi.js, line 8284

This widget extends the q4.studioApi widget. It has all the options and methods of the parent widget, in addition to those below. See the parent widget's documentation for details.

Examples

<div id="regFilingsDetails"></div>
<script>
$('#regFilingsDetails').regFilingsDetailIndex({
    studioApi: ""
});
</script>

Options

template string
The template used to render the data.
'<div class="irwDocDetailSummary">'+
    '<div class="irwBoxWrapper">'+
        '<div class="irwBoxHeader bg-primary">'+
            '<div class="irwBoxLabel">'+
                '<h5 class="pull-left">Document Details</h5>'+
                '<h5 class="pull-right hidden-xs">Document ID - {{filingId}}</h5>'+
                '<div class="clearfix"></div>'+
            '</div>'+
        '</div>'+
        '<div class="irwBoxBody">'+
            '<div class="row">'+
                '<div class="col-xs-12 col-sm-6 pull-left">'+
                    '<table class="table">'+
                        '<tbody>'+
                        '<tr>'+
                            '<td>'+
                                '<h4 class="text-primary">Filing Type</h4>'+
                            '</td>'+
                            '<td>'+
                                '<h4 class="IrwFilingType irwGaLabel" title="{{filingTypeMnemonic}}">{{filingTypeMnemonic}}</h4>'+
                            '</td>'+
                        '</tr>'+
                        '<tr>'+
                            '<td>Company</td>'+
                            '<td>{{filingInstitutionName}}</td>'+
                        '</tr>'+
                        '<tr>'+
                            '<td>Filing Date</td>'+
                            '<td>{{filingDate}}</td>'+
                        '</tr>'+
                        '<tr>'+
                            '<td>Event Date</td>'+
                            '<td>{{eventDate}}</td>'+
                        '</tr>'+
                        '</tbody>'+
                    '</table>'+
                '</div>'+
            '</div>'+
            '{{#hasAbstract}}'+
                '<div class="clearfix"></div>'+
                '<br>'+
                '<div class="irwFilingAbstract" style="display:block;">'+
                '<strong>Abstract: </strong>{{filingAbstract}}'+
                '</div>'+
            '{{/hasAbstract}}'+
        '</div>'+
    '</div>'+
'</div>'+
'<div class="irwDocDetailDownload">'+
    '<div class="irwBoxWrapper irwHasGA">'+
        '<div class="irwBoxHeader bg-primary">'+
            '<div class="irwBoxLabel">'+
                '<h5>Download</h5>'+
            '</div>'+
        '</div>'+
        '<div class="irwBoxBody">'+
            '<div class="row">'+
                '<div class="col-xs-12 col-sm-6 pull-left">'+
                    '<p><strong>File Section(s)</strong></p>'+
                '{{#documents}}'+
                    '<div class="irwFilingIconset hasLabels text-left">'+
                        '<a href="{{url}}" target="_blank" class="irwFilingDownload irw_{{documentType}} pull-left-xs" title="Download">'+
                        '<span class="irwFilingDownloadIcon">{{documentType}}</span>'+
                        '<span class="sr-only"> (Opens in a new Window)</span></a>'+
                    '</div>'+
                    '{{/documents}}'+
                '</div>'+
            '</div>'+
        '</div>'+
    '</div>'+
'</div>'