shared items

Monday, October 10, 2011

Text Overlapping over image ( JSF/Facelets )

CSS:
#_1234bg


{

display:block;

position:absolute;

z-index:0;



}

.c1{width:290px;}

.c2{width:140px;}

.c3{width:100px;}

.c1a{width:130px;padding-left:160px;font-size:10px;font-weight:bold;}

.c2a{width:50px;padding-left:91px;font-size:10px;font-weight:bolder;padding-top: 10px}

.c3a{padding-left:40px;}
 
 
JSF CODE :
<  t:div style="width:800px;height:700px;">
<  t:div id="_1234bg">
<  h:graphicImage id="image1" alt="aa" width="701" value="#{facesContext.externalContext.requestContextPath}/css/wm.png" />



<  h:panelGrid style="position:absolute;font-size:large;margin-left:15px;margin-top:25px;" columns="3" columnClasses="c1, c2, c3 c3a">

<  h:outputText value=" "/>

<  h:outputText value="#{homeManagedBean.account.cy.box1}"/>

<  h:outputText value="#{homeManagedBean.curryr}"/>



<  t:div>





This is specially useful when the user wants to print text overlaid on a background image.

Wednesday, September 21, 2011

Run Jobs on Mainframe from Java using FTP



ftp my.zos.mainframe

userid

password

quote site filetype=jes

put job.txt

quit



http://www.ibm.com/developerworks/systems/library/es-batch-zos.html

Friday, August 26, 2011

Thursday, September 16, 2010

vonage router behind another router

http://portforward.com/english/routers/port_forwarding/Dlink/DIR-615/Vonage.htm

Friday, May 21, 2010

Hibernate: Fixed char(n) in mysql to java string

Please see this link. I had same problem:




http://forum.hibernate.org/viewtopic.ph ... highlight=



Please see last entry which solved my problem. In mapping file if you can make changes link this:



from your ref:











change to:









This should solve you problem. By default Hibernate assumes that the column is string and compares against VARCHAR(255). This problem happens only when schema is validated. For any other cases this problem will not arise

Source: https://forum.hibernate.org/viewtopic.php?f=1&t=956019&start=0

Tech News

Loading...