<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<div name="messageBodySection">
<div dir="auto">Hi all,<br />
<br />
I want to save a hidden input value into vtiger_inventoryproductrel along with the other line item properties. I’ve already crated the field and a the column and followed the naming convention (myvar$row_no) but when I save the value isn’t saved. I’m not understanding where I’m missing. <br />
<br />
It seems that some thing happens in getRecordModelFromRequest() in modules/Vtiger/actions/Save.php<br />
This code seems to transfer the the values from the form to the RecordModel but there is no logic for columnName$row_no and all the others properties are being settled correctly. What am I missing?</div>
<pre>$fieldModelList = $moduleModel->getFields();
      foreach ($fieldModelList as $fieldName => $fieldModel) {
   $fieldValue = $request->get($fieldName, null);
   $fieldDataType = $fieldModel->getFieldDataType();
   if($fieldDataType == 'time'){
      $fieldValue = Vtiger_Time_UIType::getTimeValueWithSeconds($fieldValue);
   }
   if($fieldValue !== null) {
      if(!is_array($fieldValue) && $fieldDataType != 'currency') {
         $fieldValue = trim($fieldValue);
      }
      $recordModel->set($fieldName, $fieldValue);
   }
}</pre>
<div dir="auto"><br /></div>
</div>
<div name="messageSignatureSection"><br />
<div class="matchFont"><font color="#C6C6C6"><b><span style="">Sukhdev Mohan</span></b></font><span style=""></span><br />
<font color="#999999"><b><span style="">Developer</span></b></font><br /></div>
</div>
</body>
</html>