If you could, open a Bugzilla log with the steps to repeat the problem as
well as the correction.
As for the missing parameter after a delete, I'm not sure what you are
trying to do and how you are doing it.
Jeremy Ford
----- Original Message -----
From: "kylin" <[EMAIL PROTECTED]>
To: "Jeremy Ford" <[EMAIL PROTECTED]>
Sent: Monday, July 14, 2003 12:00 AM
Subject: Re: Re: question about "customize" action
> Jeremy Ford,
>
> i did not know what you have fixed.
> but i fix some code ,and it seems bug is gone.
> org.apache.jetspeed.modules.actions.portlets.CustomizeAction.java
> doUpdate function
> >>// boolean changeRequested = ( (params == null) || (newSkinName
== null) || (newSecurityParent == null) || (newTitle == null));
> boolean changeRequested = ((params != null) || (newSkinName != null) ||
(newSecurityParent != null) || (newTitle != null));
> >>// if ((p==null) || (changeRequested = false ))
> if ((p == null) || (changeRequested == false)) {
>
> i meet another question.
> in the vm ,i do like this:
> i click a link which href value is
> <a href="#" onclick="_delete('303')">delete</a>
> ref source is:
> <input name="idval" type="hidden">
> <input name="eventSubmit_doDelete" type="submit" value="delete"
style="display:none">
> <script>
> function _delete(idval){
> document.frmname.id.value=idval;
> document.frmname.eventSubmit_doDelete.click();
> }
> </script>
>
> the form was submit correct ,and it can delete the item i want to
delete.(that's say
> when execute doDelete(...) method the parameter in rundata is correct ,but
after delete
> action it will execute buildNormalContext(....), the parameter in rundata
is empty.what's
> the matter)
>
>
> regard
> kylin
>
>
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]