Hi Nico,
         Thanks! for your support - Here's how I was finally achieved it. 
Hardcoded the partial path  as below in the controller 
dynamicLinechartpath = ("""/ApplicationName/static/charts/""" + 
unique_filename )Enter code here...

In the view, you dont need to use the URL parameter - 
DLC is passed to the view which is nothing but dynamicLinechartpath 
variable. 

<!--  Line chart trial-->
                                <figure>
                                  <embed type="image/svg+xml" src="{{=DLC}}" 
/>
                                </figure>

This constructed the proper path in the view. 

Thanks, Rahul

On Monday, June 20, 2016 at 4:55:51 PM UTC+5:30, Nico de Groot wrote:
>
> The {{=...}} is meant to be used inside the view. You are using it also in 
> the controller. Just use the URL() there to get back a path as a string. 
> Send the resulting var to the view as you are already doing.
> If you inspect the rendered HTML you'll  understand the difference.
>
> Nico
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to