Changeset 14 for forms.php


Ignore:
Timestamp:
Oct 14, 2008, 9:24:18 AM (16 years ago)
Author:
george
Message:
  • Přidáno: Typ File(soubor). Možnost uploadovat nový soubor nebo otevřít stávající uložený.
  • Přidáno: Typ DateTime(datum a čas).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • forms.php

    r13 r14  
    2020  {
    2121    $this->DefinitionTextTypeToNumericType();
    22     $Output = '<center><form action="'.$this->OnSubmit.'" method="post"><div align="center">';
     22    $Output = '<center><form enctype="multipart/form-data" action="'.$this->OnSubmit.'" method="post"><div align="center">';
    2323    $Table = $this->ShowEditBlock();
    2424    $Output .= $this->Definition['Title'].Table($Table).$this->ShowHiddenBlock().'<input type="submit" value="'.$this->Definition['SubmitBuffonText'].'"></div></form>';
     
    4141        if(!array_key_exists($Index, $this->Values) and isset($Item['Value'])) $this->Values[$Index] = $Item['Value'];
    4242        $Edit = ExecuteTypeEvent($Item['Type'], 'OnEdit', $Item);
    43         array_push($Table['Rows'], array($Item['Caption'].':', $Edit));
     43        array_push($Table['Rows'], array($Item['Caption'], $Edit));
    4444      }
    4545    }
     
    8888      if(!array_key_exists($Item['Name'], $this->Values) and isset($Item['Value'])) $this->Values[$Item['Name']] = $Item['Value'];
    8989      $Edit = ExecuteTypeEvent($Item['Type'], 'OnView', $Item);
    90       array_push($Table['Rows'], array($Item['Caption'].':', $Edit));
     90      array_push($Table['Rows'], array($Item['Caption'], $Edit));
    9191    }
    9292    return($Table);
Note: See TracChangeset for help on using the changeset viewer.