mkinnan
mkinnan
I implemented (1) Create a user Field and the the first bullet (creating one field). Here's an example of what I did that has been working great: 
To clarify, the default value that gets set is for the user while in the app or in emulator. It does not appear to be set globally. I can see...
Here's a snippet from my crude work around that has passed my emulator testing ... ``` if (form.id == 'node_edit' && form.bundle == 'discussion') { if (_GET('dt') == 1) {...
@signalpoint The `default_value` isn't really a default value since that value changes. The problem is that if a user creates a discussion on an event in a group, the discussion...
@signalpoint Hmm ... that's going to take some time and work to figure out how to build custom node add/edit pages ... I have organic groups fields, address fields, entity...
Should it be `form.elements['article_type']`?
@igenroot Did you create the values in your Drupal field? options: { 0: 'Article A', 1: 'Article B' 2: 'Article C' },
Do the single quotes around the 0 need to be removed: `default_value: '0'` Does the error happen when you save a new node without changing the article_type field? Or does...
@igenroot I was referring to whether selecting an item made a difference. I would inspect the form object on submit using console.log. i would also try replacing `form_state.values.articletype` with one...