Select Specific Item Value from ListView

Hello,
In my ListView i have the rating column and i would replace the showed number with a star icons like attached.

However using, predisplay method, iā€™m not able to intercept teh right item with jquery as below:

custom/viewlist.php

<?php require_once('include/MVC/View/views/view.list.php'); class AccountsViewList extends ViewList { /** * @see ViewList::preDisplay() */ public function preDisplay() { $jsscript = <<<EOQ EOQ; parent::preDisplay(); echo $jsscript; //echo the script } } ?>

Does anyone can suggest me how to select that item?

Thank you