Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

html::formhandler::blocks(3pm) [debian man page]

HTML::FormHandler::Blocks(3pm)				User Contributed Perl Documentation			    HTML::FormHandler::Blocks(3pm)

NAME
HTML::FormHandler::Blocks - arrange form layout using blocks VERSION
version 0.40013 SYNOPSIS
This is a role which provides the ability to render your form in arbitrary 'blocks', instead of by fields. This role is included by default in HTML::FormHandler. package MyApp::Form; use HTML::FormHandler::Moose; extends 'HTML::FormHandler'; sub build_render_list {[ 'foo', 'fset' ]} has_field 'foo'; has_field 'bar'; has_field 'nox'; has_block 'fset' => ( tag => 'fieldset', render_list => ['bar', 'nox'] );; .... $form->render; Blocks live in the HTML::FormHandler::Widget::Block:: namespace. The default, non-typed block is HTML::FormHandler::Widget::Block. Provide a type for custom blocks: has_block 'my_block' => ( type => 'CustomBlock', render_list => [...] ); You can also build blocks with a 'block_list' attribute, or the builder for it, 'build_block_list'. Rendering with blocks is supported by the rendering widgets. Render::Simple doesn't do it, though it would be possible to make your own custom renderer. AUTHOR
FormHandler Contributors - see HTML::FormHandler COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Gerda Shank. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-25 HTML::FormHandler::Blocks(3pm)

Check Out this Related Man Page

HTML::FormHandler::Field::Upload(3pm)			User Contributed Perl Documentation		     HTML::FormHandler::Field::Upload(3pm)

NAME
HTML::FormHandler::Field::Upload - file upload field VERSION
version 0.40013 DESCRIPTION
This field is designed to be used with a blessed object with a 'size' method, such as Catalyst::Request::Upload, or a filehandle. Validates that the file is not empty and is within the 'min_size' and 'max_size' limits (limits are in bytes). A form containing this field must have the enctype set. package My::Form::Upload; use HTML::FormHandler::Moose; extends 'HTML::FormHandler'; has '+enctype' => ( default => 'multipart/form-data'); has_field 'file' => ( type => 'Upload', max_size => '2000000' ); has_field 'submit' => ( type => 'Submit', value => 'Upload' ); In your controller: my $form = My::Form::Upload->new; my @params = ( file => $c->req->upload('file') ) if $c->req->method eq 'POST'; $form->process( params => { @params } ); return unless ( $form->validated ); You can set the min_size and max_size limits to undef if you don't want them to be validated. DEPENDENCIES
widget Widget type is 'upload' AUTHOR
FormHandler Contributors - see HTML::FormHandler COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Gerda Shank. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-25 HTML::FormHandler::Field::Upload(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Mote Moric Blocks In My School.

I was wondering if anyone knew whether or not there was a way past these blocks. It isn't like I'm trying to get into anything bad or things like that, but I'd like to visit sites that normal 16 year olds go to, such as Myspace, GaiaOnline, and sites like that. Please, if anyone knows any... (2 Replies)
Discussion started by: GreekCoeus
2 Replies

2. Shell Programming and Scripting

grep? awk? sed? I don't know

Hi everyone! I have a file like this And I would like to find the Medium label when the value "last write" is "Jan 14" (it's could be another value like "jan 6") I really don't know what way to use to solve this problem... Thanks! (5 Replies)
Discussion started by: Castelior
5 Replies

3. Shell Programming and Scripting

Help in file parsing with awk

Hi, I have a data set as shown below: 09e757fd,22727,2012-03-01,text1,text2,to 3fd0cae7,310,2012-03-01,text3,text4,to 3fd0cae7,310,2012-03-01,text3,text5,to 3fd0cae7,311,2012-03-01,text7,text10,cc 3fd0cae7,311,2012-03-01,text7,text11,to 3fd0cae7,312,2012-03-01,text8,text15,to... (3 Replies)
Discussion started by: shekhar2010us
3 Replies

4. Programming

Need help with counting within parallelized block - OpenMP/C-Programming

Hello together, I have a question for you. Since a few weeks I am trying to programm a small bruteforce application in C on Ubuntu 14.04.1 using Code::Blocks with gcc-4.8.2. My programm is nothing special. It's just for practise, Without hashing or something like that. For me the focus is on... (11 Replies)
Discussion started by: DaveX
11 Replies