<jqx-grid id=”grid” width=”100%” columns-height=”50″ rows-height=”60″ alt-rows=”true” sortable=”true” pageable=”true” auto-height=”true” row-details=”true” row-details-template=”{{currentSprint.template}}” init-row-details=”currentSprint.initRowDetails()” source-id=”TFSId” columns-resize=”true” filterable=”true” source=”Model.WorkItems”>
<jqx-grid-columns>
<jqx-grid-column datafield=”TFSId” text=”TFS ID” width=”5%”>></jqx-grid-column>
<jqx-grid-column datafield=”EVId” text=”EV ID” width=”5%”></jqx-grid-column>
<jqx-grid-column datafield=”Type” text=”Type” width=”5%”></jqx-grid-column>
<jqx-grid-column datafield=”Title” text=”Title” width=”30%”></jqx-grid-column>
<jqx-grid-column datafield=”TFSStatus” text=”TFS Status” width=”10%”></jqx-grid-column>
<jqx-grid-column datafield=”EVStatus” text=”EV Status” width=”10%”></jqx-grid-column>
<jqx-grid-column datafield=”IterationPath” text=”Iteration Path” width=”10%”></jqx-grid-column>
<jqx-grid-column datafield=”ReleaseNumber” text=”Release” width=”5%”></jqx-grid-column>
<jqx-grid-column datafield=”AssignedTo” text=”AssignedTo” width=”10%”></jqx-grid-column>
<jqx-grid-column datafield=”PullRequests” text=”PUll Requests” width=”10%”></jqx-grid-column>
</jqx-grid-columns>
</jqx-grid>
The Title text in the list has string like “ACLD – this is complete [Dev Complete, Ready for Release]”
I am getting error
Uncaught SyntaxError: Unexpected identifier
when I remove [ and ] from the title it works fine.
any help would be appreciated