aboutsummaryrefslogtreecommitdiffstats
path: root/root/base/textfield
diff options
context:
space:
mode:
authormatthewt <matthewt@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2007-09-12 18:11:34 +0000
committermatthewt <matthewt@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2007-09-12 18:11:34 +0000
commit7adfd53f17f66ffe93763e944ed1d3fc52a369dc (patch)
tree19e599e74419b41cbbe651fd226b81e8b73551d3 /root/base/textfield
parentc728c97cb1061330e63c7cc048e768ef74988fe6 (diff)
downloadreaction-7adfd53f17f66ffe93763e944ed1d3fc52a369dc.tar.gz
reaction-7adfd53f17f66ffe93763e944ed1d3fc52a369dc.zip
moved shit to trunk
Diffstat (limited to 'root/base/textfield')
-rw-r--r--root/base/textfield17
1 files changed, 17 insertions, 0 deletions
diff --git a/root/base/textfield b/root/base/textfield
new file mode 100644
index 0000000..a43f445
--- /dev/null
+++ b/root/base/textfield
@@ -0,0 +1,17 @@
+[%
+
+PROCESS field_base;
+
+control_block = 'textfield_control';
+
+BLOCK textfield_control;
+
+ attrs.maxlength = '255'; # SimpleStr requires <= 255
+ name = attrs.name || 'value'; attrs.name = '';
+ %]<input type="text" [% IF id_attr; 'id="'; id_attr; '"'; END; connect_control(self, name);
+ ' value="'; self.value | html; '"'; process_attrs(attrs) %] />[%
+ attrs.maxlength = '';
+
+END;
+
+%]