Skip to Content
0
Former Member
Apr 03, 2007 at 09:01 AM

UWL and navigation node as default in uwl?

46 Views

Hi all,

I have a little problem with uwl: I'd like to change the default view in uwl when users go on iview.

I define new vew as follow (in new uwl configuration file):

    <View name="myPersonalView" 
          selectionMode="SINGLESELECT" width="98%" 
          supportedItemTypes="uwl.task.webflow.TS20000193" 
          tableDesign="STANDARD" visibleRowCount="10" 
          headerVisible="yes" 
          tableNavigationFooterVisible="yes" 
          tableNavigationType="CUSTOMNAV" 
          actionRef="" refresh="300" dueDateSevere="86400000"
          dueDateWarning="259200000" 
          emphasizedItems="new" 
          displayOnlyDefinedAttributes="yes"
          dynamicCreationAllowed="yes" 
          actionPosition="top">
.....
    </View>

and add new navigation node as follow inside navigation node

    <NavigationNode name="Main" view="" 
       referenceGroup="" visible="yes" keepItemCountUpdated="no">
<!-- INIT : add my menu as first element -->
      <NavigationNode name="myNN01" view="myPersonalView"
               referenceGroup="" visible="yes" 
               keepItemCountUpdated="no" 
               referenceBundle="myText">
        <NavigationNode name="myNN02" view="myPersonalView"
               referenceGroup="" visible="yes" 
               keepItemCountUpdated="no" >
          <NavigationNode name="PersonalViewPlaceHolderTask2" 
                   view=""
                   referenceGroup="UWL_PERSONAL" 
                   visible="yes" 
                   keepItemCountUpdated="no"/>
        </NavigationNode>
     </NavigationNode>
<!-- END : add my menu as first element -->
   ... 

With this configuration my new view is place as first element in uwl tab but, unfortunatly, when the user open and logon to portal the uwl start with standard "task" folder instead of "myText" folder.

How can i set my navigation node as default in uwl?

Thank in advance

Emmanuele Prudenzano