[Wicket-user] embed src ... /

2006-10-26 Thread Michael Welter
I have an html table with several columns.  One column is an audio 
recording:

 tr wicket:id=responses class=even
   tdembed wicket:id=recording type=audio/x-wav src= 
height=50 width=100 autostart=false//td
   tdspan wicket:id=titleTitle/span/td
   tdspan wicket:id=descriptionDescription/span/td 
   tdspan wicket:id=textText/span/td
 /tr

In some instances there is no audio recording.  With no recording I send 
Label(recording,), and this results in the display of the QuickTime 
logo with a question mark (the src tag is empty).

Is there some way to manipulate the html in the case of no recording?  I 
would like to be able to remove the embed / tag altogether and just 
have an empty td/ cell.

Thanks



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] embed src ... /

2006-10-26 Thread Juergen Donnerstag
embed.setVisible(false)

Juergen

On 10/26/06, Michael Welter [EMAIL PROTECTED] wrote:
 I have an html table with several columns.  One column is an audio
 recording:

  tr wicket:id=responses class=even
tdembed wicket:id=recording type=audio/x-wav src=
 height=50 width=100 autostart=false//td
tdspan wicket:id=titleTitle/span/td
tdspan wicket:id=descriptionDescription/span/td
tdspan wicket:id=textText/span/td
  /tr

 In some instances there is no audio recording.  With no recording I send
 Label(recording,), and this results in the display of the QuickTime
 logo with a question mark (the src tag is empty).

 Is there some way to manipulate the html in the case of no recording?  I
 would like to be able to remove the embed / tag altogether and just
 have an empty td/ cell.

 Thanks



 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] embed src ... /

2006-10-26 Thread Igor Vaynberg
instead of label add a webmarkupcontainer and call setvisible(false) on it-IgorOn 10/26/06, Michael Welter 
[EMAIL PROTECTED] wrote:I have an html table with several columns.One column is an audio
recording: tr wicket:id=responses class=even tdembed wicket:id=recording type=audio/x-wav src="">height=50 width=100 autostart=false//td
 tdspan wicket:id=titleTitle/span/td tdspan wicket:id=descriptionDescription/span/td tdspan wicket:id=textText/span/td
 /trIn some instances there is no audio recording.With no recording I sendLabel(recording,), and this results in the display of the QuickTimelogo with a question mark (the src tag is empty).
Is there some way to manipulate the html in the case of no recording?Iwould like to be able to remove the embed / tag altogether and justhave an empty td/ cell.Thanks
-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimohttp://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] embed src ... /

2006-10-26 Thread Johannes Fahrenkrug
How about setVisible(false)?

Michael Welter wrote:

I have an html table with several columns.  One column is an audio 
recording:

 tr wicket:id=responses class=even
   tdembed wicket:id=recording type=audio/x-wav src= 
height=50 width=100 autostart=false//td
   tdspan wicket:id=titleTitle/span/td
   tdspan wicket:id=descriptionDescription/span/td 
   tdspan wicket:id=textText/span/td
 /tr

In some instances there is no audio recording.  With no recording I send 
Label(recording,), and this results in the display of the QuickTime 
logo with a question mark (the src tag is empty).

Is there some way to manipulate the html in the case of no recording?  I 
would like to be able to remove the embed / tag altogether and just 
have an empty td/ cell.

Thanks



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

  



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] embed src ... /

2006-10-26 Thread Johannes Fahrenkrug
Juergen, you win. Igor and I were a minute too late ;-)


Juergen Donnerstag wrote:

embed.setVisible(false)

Juergen

On 10/26/06, Michael Welter [EMAIL PROTECTED] wrote:
  

I have an html table with several columns.  One column is an audio
recording:

 tr wicket:id=responses class=even
   tdembed wicket:id=recording type=audio/x-wav src=
height=50 width=100 autostart=false//td
   tdspan wicket:id=titleTitle/span/td
   tdspan wicket:id=descriptionDescription/span/td
   tdspan wicket:id=textText/span/td
 /tr

In some instances there is no audio recording.  With no recording I send
Label(recording,), and this results in the display of the QuickTime
logo with a question mark (the src tag is empty).

Is there some way to manipulate the html in the case of no recording?  I
would like to be able to remove the embed / tag altogether and just
have an empty td/ cell.

Thanks



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

  



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user