Re: Image Tag Wicket Processing

2013-11-17 Thread arronlee
Hi, Thanks for your sharing. But I wonder whether there are some differences
between the  image processor
http://www.yiigo.com/guides/csharp/how-to-process-image.shtml   I am
testing about and the one you mentioned above?



Best regards,
Arron



-
Best Regards,
Arron



| Image Processing SDK  |


Next Tomorrow is Another Day.
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Image-Tag-Wicket-Processing-tp3258703p4662476.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Image Tag Wicket Processing

2013-09-02 Thread Abigail
Hi,How about your code?If there is something wrong,then you can check your
code .Or you can create a .NET image SDK,which can  process image
http://www.rasteredge.com/how-to/csharp-imaging/process-online/   as you
wish



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Image-Tag-Wicket-Processing-tp3258703p4661168.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Image Tag Wicket Processing

2011-02-03 Thread Ayodeji Aladejebi
Pleas how can I stop wicket from processing my images and inserting onclick
=window.location.href

thanks


Re: Image Tag Wicket Processing

2011-02-03 Thread James Carman
Can you create a quickstart that exhibits that behavior?  I have never
seen this.

On Thu, Feb 3, 2011 at 1:34 PM, Ayodeji Aladejebi aladej...@gmail.com wrote:
 Pleas how can I stop wicket from processing my images and inserting onclick
 =window.location.href

 thanks


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Image Tag Wicket Processing

2011-02-03 Thread Ayodeji Aladejebi
If you have this in your markup:

img src=images/tree10.png
style=padding-right:4px;vertical-align:text-top; /

by the time it renders in wicket by default,it becomes

 img src=images/tree10.png
style=padding-right:4px;vertical-align:text-top;
onclick=window.location.href='images/tree10.png';return false;/

As simple as that

Any tips



On Thu, Feb 3, 2011 at 7:38 PM, James Carman ja...@carmanconsulting.comwrote:

 Can you create a quickstart that exhibits that behavior?  I have never
 seen this.

 On Thu, Feb 3, 2011 at 1:34 PM, Ayodeji Aladejebi aladej...@gmail.com
 wrote:
  Pleas how can I stop wicket from processing my images and inserting
 onclick
  =window.location.href
 
  thanks
 

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Aladejebi Ayodeji A.,
DabarObjects Solutions
Phone: +234 9 875 1763
Mobile: +234 803 589 1780
Email: d...@dabarobjects.com
Web: www.dabarobjects.com


Re: Image Tag Wicket Processing

2011-02-03 Thread Ayodeji Aladejebi
In the application settings: I used

getMarkupSettings().setAutomaticLinking(true);

thats all

On Fri, Feb 4, 2011 at 2:27 AM, Ayodeji Aladejebi aladej...@gmail.comwrote:

 If you have this in your markup:

 img src=images/tree10.png
 style=padding-right:4px;vertical-align:text-top; /

 by the time it renders in wicket by default,it becomes

  img src=images/tree10.png
 style=padding-right:4px;vertical-align:text-top;
 onclick=window.location.href='images/tree10.png';return false;/

 As simple as that

 Any tips



 On Thu, Feb 3, 2011 at 7:38 PM, James Carman 
 ja...@carmanconsulting.comwrote:

 Can you create a quickstart that exhibits that behavior?  I have never
 seen this.

 On Thu, Feb 3, 2011 at 1:34 PM, Ayodeji Aladejebi aladej...@gmail.com
 wrote:
  Pleas how can I stop wicket from processing my images and inserting
 onclick
  =window.location.href
 
  thanks
 

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org







Re: Image Tag Wicket Processing

2011-02-03 Thread Ayodeji Aladejebi
If I set Application Settings to

getMarkupSettings().setAutomaticLinking(false);

my user interface is scattered as it no longer recognizes my CSS file, then
wicket changes my css tags from

link href=style/jobex-style.css rel=stylesheet type=text/css /

To:

link href=../style/jobex-style.css rel=stylesheet type=text/css/

and my CSS files stop resolving

I will appreciate any help with this

On Fri, Feb 4, 2011 at 2:29 AM, Ayodeji Aladejebi aladej...@gmail.comwrote:

 In the application settings: I used

 getMarkupSettings().setAutomaticLinking(true);

 thats all


 On Fri, Feb 4, 2011 at 2:27 AM, Ayodeji Aladejebi aladej...@gmail.comwrote:

 If you have this in your markup:

 img src=images/tree10.png
 style=padding-right:4px;vertical-align:text-top; /

 by the time it renders in wicket by default,it becomes

  img src=images/tree10.png
 style=padding-right:4px;vertical-align:text-top;
 onclick=window.location.href='images/tree10.png';return false;/

 As simple as that

 Any tips



 On Thu, Feb 3, 2011 at 7:38 PM, James Carman 
 ja...@carmanconsulting.comwrote:

 Can you create a quickstart that exhibits that behavior?  I have never
 seen this.

 On Thu, Feb 3, 2011 at 1:34 PM, Ayodeji Aladejebi aladej...@gmail.com
 wrote:
  Pleas how can I stop wicket from processing my images and inserting
 onclick
  =window.location.href
 
  thanks
 

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org








Web: www.dabarobjects.com


Re: Image Tag Wicket Processing

2011-02-03 Thread James Carman
Does this happen in a quickstart?  Again, I've never seen this before.
 What I'm trying to do is eliminate variables here.  If this happens
in an isolated situation, then it's a problem.  If not, then it's
something in your environment.  This sounds very familiar to me,
though.  Someone on this list asked a question about having the images
clickable automatically before.

On Thu, Feb 3, 2011 at 8:27 PM, Ayodeji Aladejebi aladej...@gmail.com wrote:
 If you have this in your markup:

 img src=images/tree10.png
 style=padding-right:4px;vertical-align:text-top; /

 by the time it renders in wicket by default,it becomes

  img src=images/tree10.png
 style=padding-right:4px;vertical-align:text-top;
 onclick=window.location.href='images/tree10.png';return false;/

 As simple as that

 Any tips



 On Thu, Feb 3, 2011 at 7:38 PM, James Carman 
 ja...@carmanconsulting.comwrote:

 Can you create a quickstart that exhibits that behavior?  I have never
 seen this.

 On Thu, Feb 3, 2011 at 1:34 PM, Ayodeji Aladejebi aladej...@gmail.com
 wrote:
  Pleas how can I stop wicket from processing my images and inserting
 onclick
  =window.location.href
 
  thanks
 

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 Aladejebi Ayodeji A.,
 DabarObjects Solutions
 Phone: +234 9 875 1763
 Mobile: +234 803 589 1780
 Email: d...@dabarobjects.com
 Web: www.dabarobjects.com


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org