still trying to succesfully used the edit mode of a portlet... I've seen that on SUN's impl. you can use the edit mode by just using navigation rules... for this you specify your from and outcomes in faces-config.xml but portlet.xm has a parameter such as:

   <init-param>
            <name>com.sun.faces.portlet.INIT_EDIT</name>
            <value>EditMode.jsp</value>
        </init-param>

in myfaces we do:

       <init-param>
            <name>default-view</name>
            <value>/index.jsp</value>
        </init-param>

real quick I tried to use:

        <init-param>
            <name>default-edit</name>
            <value>/edit.jsp</value>
        </init-param>

No errors as expected, but doesn't make a difference at runtime...

Is there such a thing in myfaces (i ignore if this is an impl specific thing or part of the specs)...

i tried this in 1.1.5 and 1.1.4

thanks!

Reply via email to