|
From: <sv...@de...> - 2005-05-19 16:58:23
|
Author: marijn
Date: 2005-05-19 12:58:18 -0400 (Thu, 19 May 2005)
New Revision: 1098
Modified:
humano2/trunk/web/builder/site/js/fn_formsmng.js
Log:
* Can now create a folder with no content.
* Fixed message when forgetting to set the folder name.
Modified: humano2/trunk/web/builder/site/js/fn_formsmng.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/js/fn_formsmng.js 2005-05-19 13:18:22 =
UTC (rev 1097)
+++ humano2/trunk/web/builder/site/js/fn_formsmng.js 2005-05-19 16:58:18 =
UTC (rev 1098)
@@ -34,13 +34,9 @@
=20
if (frm.formName.value =3D=3D "")
{
- strError +=3D "Error, you must insert the Form Name\n";
+ strError +=3D "Error, you must insert a name.\n";
}
=20
- if(rightColumn.fSortedList.Length() =3D=3D 0)
- {
- strError +=3D "Error, you must define wish field's you want =
display\n";
- }
frm.LstAttrib.value =3D "";
=20
for( var i =3D 0;i < rightColumn.fSortedList.Length();i++)
@@ -90,4 +86,4 @@
frm.folderparentid.value =3D parentid;
}
//alert(frm.folderparent.options[pos].value); =20
- } =20
\ No newline at end of file
+ } =20
|