Changeset 485 for trunk/Common/Forms.php


Ignore:
Timestamp:
Feb 10, 2013, 12:28:22 PM (12 years ago)
Author:
chronos
Message:
  • Opraveno: Neukládat položky ve formuláři, které jsou jen pro čtení.
  • Opraveno: Formátování html ve zobrazení ISu.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Forms.php

    r484 r485  
    143143    $Values = array();
    144144    foreach($this->Definition['Items'] as $Index => $Item)
     145    {
     146      if(!array_key_exists('ReadOnly', $Item)) $Item['ReadOnly'] = false;
     147      if($Item['ReadOnly'] == false)
    145148    if(!array_key_exists($Item['Type'], $FormTypes) or
    146149    (array_key_exists($Item['Type'], $FormTypes) and ($FormTypes[$Item['Type']]['Type'] != 'ManyToOne')))
     
    166169       
    167170        //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>');
     171    }
    168172    }
    169173    if($Id == 0)
Note: See TracChangeset for help on using the changeset viewer.