Output custom field as ul list

You are using get_post_meta incorrectly. As you use it, it will return an array – you cannot explode an array. See the codex on get_post_meta();

If you pass true as the third parameter, this tells the function to return a string. So,

$list_items = get_post_meta($post->ID, 'idid', true);

should work.