Thanks Soumya, I reopened https://issues.apache.org/jira/browse/OFBIZ-3667
Jacques PS: I previously sent another msg but it seems,as it was HTML, it did not pass through From: soumya jyoti guru Thanks jacques, Following are the steps through which you can understand the problem that I am facing , When I click on the date picker (which is a calender) it displays itself inside the form and pushing the labels below(for reference I am attaching the screenshot),which should not be the expected case. The calender should come overlay instead of inside the form and should not shift the elements below for taking its position in the form. Ideally it should come over the screen as the, for example ,the lookups come. and I am using the bizzare theme , for the following url "https://demo-trunk.ofbiz.apache.org/catalog/control/EditProduct?productId=FA-001 ". Following are the changes that I made for making it work as I expected. So I am interested to know the why this changes were commented and why this made as a relative layered output. I made changes in the calender_date_select.js file as below Line no 123:(originally) /* mod for OFBiz layered lookups var left_px = e_left.toString() + "px", top_px = (above ? (e_top - c_height ) : ( e_bottom )).toString() + "px";*/ Change made by me is: /* mod for OFBiz layered lookups*/ var left_px = e_left.toString() + "px", top_px = (above ? (e_top - c_height ) : ( e_bottom )).toString() + "px"; Line no 128:(originally) /* mod for OFBiz layered lookups this.calendar_div.style.left = left_px; this.calendar_div.style.top = top_px;*/ this.calendar_div.style.left = "0px"; this.calendar_div.style.top = top_px; Changes made by me is: /* mod for OFBiz layered lookups*/ this.calendar_div.style.left = left_px; this.calendar_div.style.top = top_px; /*this.calendar_div.style.left = "0px"; this.calendar_div.style.top = top_px;*/ Line no 147:(Origianlly) /* mod for OFBiz layered lookups var style = { position:"absolute", visibility: "hidden", left:0, top:0 }*/ var style = { position:"relative", visibility: "hidden", left:0, top:0 } change made by me is: /* mod for OFBiz layered lookups*/ var style = { position:"absolute", visibility: "hidden", left:0, top:0 } /* var style = { position:"relative", visibility: "hidden", left:0, top:0 }*/ Regards Soumya On Thu, May 27, 2010 at 2:34 PM, Jacques Le Roux <[email protected]> wrote: Soumya, Thanks for the link, I can't reproduce with the default Theme (Tomahawk) using the 4 1st calendars on this page. Did you use another theme? Jacques From: "soumya jyoti guru" <[email protected]> Thank you Jacques for reminding me about the URL.The URL is https://demo-trunk.ofbiz.apache.org/catalog/control/EditProduct?productId=FA-001 with regards Soumya On Wed, May 26, 2010 at 8:00 PM, Jacques Le Roux < [email protected]> wrote: Please provide an URL from the demo trunk showing this error Jacques From: "soumya jyoti guru" <[email protected]> Hello all , I am facing a problem , when I click on any date time calender , It expands the form or ftl, which should not has to be the case , it should come over the form or ftl not inside , I also checked this on demo server and found the same behaviour. I also checked some css file related to the calender there are some line of code are commented , I dont understand the purpose of this. How I can fix this for my customized code. Thanks Regards Soumya
