I do have content pages on both installations (on the fresh installation your demo content, on the second site an upgraded website with real content, both are working fine)
If I try to edit a subpage of the demo site that already has a parent page, the parent field is also invisible.
There are a bunch of Javascript warnings but no errors.
I tested it with Firefox, Chrome and Maxthon Browsers (both of the latter without any plugins) and all show the same effect.
In firebug I can see that the parent input field is set to "hidden":
Code: Select all
<p class="pageinput">
<input id="cms_hierdropdown1" class="cms_hierdropdown" type="text" maxlength="50" size="50" value="-1" title="This field displays the selected content page. The actual string displayed (page title or menu text) is dependent on user and site preference." readonly="readonly" style="display: none;">
<input type="hidden" value="-1" name="parent_id">
<__script__ type="text/javascript">
$(function(){ $('#cms_hierdropdown1').hierselector({current: 33,parent: -1,allowcurrent: false,use_perms: true,ignore_current: false,allow_all: true,use_name: true}) });
</__script>
</p>
Removing the hidden attribute in Firebug makes the input field temporarily visible. It shows the correct content id of the parent page.
By the way - seeing an input field instead of a dropdown list makes me wonder: Does this mean that in in V.2.0 we have lost the ability to quickly choose the parent page from a dropdown-list of existing page names as it was in V.1.x and are now forced to blindly enter the ID of the parent page? This would be a step back in useability IMO.