21
edits
Changes
→IO_Form
<big><pre>
class IO_Node{
IO_Field* _f;
bool _dynamic;
bool _submitter;
IO_Node* next;
...
...
...
};
</pre></big>
With this you can have the IO_field kept in the node and at the same time keep track of the IO_Field being dynamically created and if it is a submitter or not. So the data of the node will be the three attributes; '''_f''', '''_dynamic''', and '''submitter'''.
==Fardad adds io_textedit==