Custom Field Type
In certain cases you will need to create a custom field type to achieve specific input abilities.
Let's create grid input field type for custom set of items.

File structure
app/code/MageMe/WebFormsCustomField
├── Block
│ └── Form
│ └── Element
│ └── Field
│ └── Type
│ └── CustomField.php
├── etc
│ ├── di.xml
│ ├── module.xml
│ └── webforms.xml
├── Model
│ └── Field
│ └── Type
│ └── CustomField.php