How to hide parameters in hyperlink while using xml forms

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

How to hide parameters in hyperlink while using xml forms

Sonali Agrahari
Hello all,

  I am using OFBiz 12.04 version in my application. When XML-Forms are used,
its parameters value are shown in URL while using hyperlink.  How can I hide
these values from URL . i,e how to use POST method in XML forms.

https://localhost:8443/dashboard/control/FormName?stageId=1

I want to hide stageId.

Kindly help.

Regards,
Sonali




--
Sent from: http://ofbiz.135035.n4.nabble.com/OFBiz-User-f135036.html
Reply | Threaded
Open this post in threaded view
|

Re: How to hide parameters in hyperlink while using xml forms

deepak nigam-2
Hi Sonali,

Are you using the <field> tag for passing the values?

On Tue, Apr 3, 2018 at 1:52 PM Sonali Agrahari <[hidden email]>
wrote:

> Hello all,
>
>   I am using OFBiz 12.04 version in my application. When XML-Forms are
> used,
> its parameters value are shown in URL while using hyperlink.  How can I
> hide
> these values from URL . i,e how to use POST method in XML forms.
>
> https://localhost:8443/dashboard/control/FormName?stageId=1
>
> I want to hide stageId.
>
> Kindly help.
>
> Regards,
> Sonali
>
>
>
>
> --
> Sent from: http://ofbiz.135035.n4.nabble.com/OFBiz-User-f135036.html
>
Reply | Threaded
Open this post in threaded view
|

Re: How to hide parameters in hyperlink while using xml forms

Sonali Agrahari
Yaa, I am using <field> tag for passing the values . For eg.

         <field name="addStageActivityLink"
title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext">
            <hyperlink target="/taskmanagement/control/AddStageActivity"
description="${uiLabelMap.stageActivities}" target-    type="inter-app">
                <parameter param-name="stageId"/>
                <parameter param-name="partyId"/>
            </hyperlink>
       </field>





--
Sent from: http://ofbiz.135035.n4.nabble.com/OFBiz-User-f135036.html
Reply | Threaded
Open this post in threaded view
|

Re: How to hide parameters in hyperlink while using xml forms

Deepak Dixit-3
Hi Sonali,

You can use  link-type="hidden-form" attribute of hyperlink tag.

Thanks & Regards
--
Deepak Dixit
www.hotwaxsystems.com
www.hotwax.co

On Tue, Apr 3, 2018 at 2:41 PM, Sonali Agrahari <[hidden email]>
wrote:

> Yaa, I am using <field> tag for passing the values . For eg.
>
>          <field name="addStageActivityLink"
> title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext">
>             <hyperlink target="/taskmanagement/control/AddStageActivity"
> description="${uiLabelMap.stageActivities}" target-    type="inter-app">
>                 <parameter param-name="stageId"/>
>                 <parameter param-name="partyId"/>
>             </hyperlink>
>        </field>
>
>
>
>
>
> --
> Sent from: http://ofbiz.135035.n4.nabble.com/OFBiz-User-f135036.html
>