Yeap, i figured it will propably go to change this frome mentioned listing viev.
And adding class to
<td class="hikashop_order_status_value">
<?php
if($this->manage && !$this->popup){
$doc = JFactory::getDocument();
$doc->addScriptDeclaration(' var '."default_filter_status_".$row->order_id.'=\''.$row->order_status.'\'; ');
echo $this->category->display("filter_status_".$row->order_id,$row->order_status,'onchange="if(this.value==default_filter_status_'.$row->order_id.'){return;} hikashop.openBox(\'status_change_link\',\''.hikashop_completeLink('order&task=changestatus&order_id='.$row->order_id,true).'&status=\'+this.value);this.value=default_filter_status_'.$row->order_id.';if(typeof(jQuery)!=\'undefined\'){jQuery(this).trigger(\'liszt:updated\');}"');
} else {
echo $row->order_status;
}
?>
</td>
and adding class to line 123 on default status <tr class="row<?php echo $k; ?>">
But since i'm not much of a javascript specialist, would you be able to provide mi with such a code, that wont interfere with the one above (line 177)