BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
render() {
return (<div className='control-pane'>
<div className='control-section'>
<GridComponent dataSource={data} allowPaging={true} pageSettings={this.pageSettings}>
<ColumnsDirective>
-----------
</ColumnsDirective>
<AggregatesDirective>
<AggregateDirective>
<AggregateColumnsDirective>
<AggregateColumnDirective field='Freight' type='Sum' format= "₹#.00" footerTemplate={this.footerSum}> </AggregateColumnDirective>
</AggregateColumnsDirective>
</AggregateDirective>
<AggregateDirective>
<AggregateColumnsDirective>
<AggregateColumnDirective field='Freight' type='Average' format='€#.0' footerTemplate={this.footerAvg}> </AggregateColumnDirective>
</AggregateColumnsDirective>
</AggregateDirective>
</AggregatesDirective>
</GridComponent>
</div>
</div>);
}
}
|