From dca97ef898dca40218403765be51eb4cee087bad Mon Sep 17 00:00:00 2001 From: rob Date: Fri, 24 Jan 2003 15:08:03 +0000 Subject: [PATCH] Added jscript stuff for text/number validation --- presentation/Html.inc | 45 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/presentation/Html.inc b/presentation/Html.inc index 11eefec..d7b8084 100644 --- a/presentation/Html.inc +++ b/presentation/Html.inc @@ -15,6 +15,10 @@ function startTable($border, $width) { return "\n"; } +function tableCaption($sCaption) { + return "\n"; +} + function stopTable() { return "
$sCaption
\n"; } @@ -23,14 +27,15 @@ function tableRow($align, $bgcolor, $html) { return "$html\n"; } + function tableHeading($cssClassName, $colspan, $text) { return "\n $text\n \n"; } -function tableData($html) { - return "$html\n"; +function tableData($html, $iColspan = 1) { + return "$html\n"; } function tableCssData($html, $cssClass) { @@ -41,6 +46,10 @@ function startTableRowCell() { return "\n"; } +function textInput($sId, $sValue) { + return "\n"; +} + function endTableRowCell() { return "\n"; } @@ -53,4 +62,36 @@ function generateImage($sImageSource) { return ""; } +function getNumberStringValidationJavaScript() { + return "\n"; +} + ?> -- libgit2 0.21.4