예제 #1
0
 /**
  * Get CSS class
  *
  * @return string
  */
 protected function getCSSClass()
 {
     $class = parent::getCSSClass();
     if ($this->isDisplayAmountField()) {
         $class .= ' with-input';
     }
     if ($this->getTransaction()->getDataCell('xpc_is_fraud_status') && $this->getTransaction()->getDataCell('xpc_is_fraud_status')->getValue()) {
         $class .= ' fraud-disabled';
     }
     return $class;
 }
예제 #2
0
 /**
  * Get CSS class
  *
  * @return string
  */
 protected function getCSSClass()
 {
     $class = parent::getCSSClass();
     if ($this->isDisplayAmountField()) {
         $class .= ' with-input';
     }
     return $class;
 }