Hi bradP-2,
Please try this:
1) deactivate other plugins and switch to wordpress default theme
2) enable wordpress debug mode, repeat the actions you mentioned above, and post the debug logs here.
http://wp-types.com/documentation/user-guides/debugging-types-and-views/
PHP Debugging
In case you think that Types or Views are doing something wrong (what we call a bug), you should enable PHP error logging. Again, edit your wp-config.php file and add the following:
ini_set('log_errors',TRUE);
ini_set('error_reporting', E_ALL);
ini_set('error_log', dirname(__FILE__) . '/error_log.txt');