Hi Alexey,
I think I found the solution, problem is while uploading file in
milestone (at the time of editing) form was not getting submitted to
server side. Problem is in "milestone.xhtml". I have moved upload file
code from "milestoneViewForm" and put it outside the form.
So final structure will be as follow,
<ui:composition>
-----------
-----------
<ui:define name="Content">
<h:form id="milestoneViewForm"...>
..........
..........
</h:form>
</ui:define>
//upload file in milestone code.
<ui:define>
<ui:fragment rendered="#{not milestoneController.newMilestone}">
<ui:include src="includes/attachmentswithupload.xhtml">
<ui:param name="attachmentList"
value="#{milestoneController.attachments}" />
<ui:param name="page" value="#
{
milestoneController.milestone.name}" />
<ui:param name="showUpload"
value="#{milestoneController.canSaveMilestone}" />
<ui:param name="reRender"
value="description, commentsPanel" />
</ui:include>
</ui:fragment>
</ui:define>
</ui:composition>
Do you think this is the solution?
Thank you.
regards,
Vikas Khengare
> On Tue, Oct 27, 2009 at 5:00 PM, Alexey Kakunin <
akaku...@emdev.ru> wrote:
> > Hi Vikas!
>
> > 0.26 was quite long time ago - but I will try to identify the fixes we did
> > for this problem and send you solution during today
>
> > 2009/10/26 vikas.khengare <
vikas.kheng...@gmail.com>
> ...
>
> read more »