Hello I’ve got this code:
<div class="volaxe" data-bind="with: $root.reportsFilterLeagueTableEngine">
<div id='jqxWidget' data-bind="if: $root.isIndustrySelected() == false" class="smtxt" style="text-align: center; color: orange">
<div data-bind="jqxGrid: {
width: 810,
height: 475,
source: reportData,
pageable: false,
autoheight: false,
editable: false,
selectionmode: 'singlerow',
theme: 'custom',
columns: [
{ text: 'Sector', dataField: 'Sector', width: 250 },
{ text: 'Firm', dataField: 'Firm', width: 300, cellsalign: 'left' }
],
}" id="jqxgrid" >
</div>
Which generates this:
Sector --- Firm
----------------
A Vol
A Sell
B Toder
How can I format the Sector to get something like this:
A-----------Vol
------------Sell
B-----------Toder
(Consider '-' a black space)
The Sector it's shown only once if it's repeated