21278 Posts in 5728 Topics by 2599 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 390 Views |
-
$Image.setWidth

9 August 2011 at 1:45am
i have a holder page, were $Image.SetWidth(50) returns the resized image. in the child page i have to use
$showPerson.Image to show the image.
when i try to show the resized image
$showPerson.Image.SetWidth(50)
i get an server error$showPerson.Image.Width works and returns the width.
Any ideas how to solve $showPerson.Image.SetWidth(50) ?
-
Re: $Image.setWidth

9 August 2011 at 1:50am
try...
<% control showPerson %><% control Image %>
<% control SetWidth(50) %>{$Tag}<% end_control %>
<% end_control %><% end_control %>I think you cannot just keep using "dot" notation in the templates... instead treat each as shifting the context with a control
-
Re: $Image.setWidth

9 August 2011 at 1:58am
Thank you very much swaiba. This solved my problem in less than 10 min.
-
Re: $Image.setWidth

9 August 2011 at 5:03am
I think you can:
<% control showPerson %>
<% control Image.SetWidth(50) %>
...
<% end_control %>
<% end_control %>
| 390 Views | ||
|
Page:
1
|
Go to Top |


