Forum: JSP Oct 3rd, 2008 |
| Replies: 0 Views: 1,447 The example code below produces two radio buttons, side by side, i.e.
O Keywords O All Fields
Without specifying a width for the selectOneRadio component (which I don't think is the best solution... |
Forum: JavaScript / DHTML / AJAX Jul 1st, 2008 |
| Replies: 1 Views: 965 You can easily embed a Google Map on your website.
Go to http://www.google.com/maps
Select the "My Maps" tab
Click the "Create new map" button
Sign in (create a google account if you need... |
Forum: JavaScript / DHTML / AJAX Jun 25th, 2008 |
| Replies: 8 Views: 5,591 I assume you mean browse button instead of "browser".
This does enable you to change the appearance of the "Browse..." button using CSS.
The code was just an implementation of what I think had... |
Forum: JavaScript / DHTML / AJAX Jun 24th, 2008 |
| Replies: 8 Views: 5,591 This solution (only tested in IE) allows you to replicate type="input" components and apply separate styles to the text box and "Browse..." button.
<form action="#"... |
Forum: JavaScript / DHTML / AJAX Mar 26th, 2008 |
| Replies: 8 Views: 9,789 I don't think you can make tooltips display in IE6. I haven't tried in other browsers.
This is an example of what I've done when I've needed to provide a solution for this problem in IE6. It's for... |
Forum: JavaScript / DHTML / AJAX Mar 25th, 2008 |
| Replies: 8 Views: 9,789 Tooltips will be displayed in IE7 but not in IE6. I've heard from others this is because in IE6, when you click on a drop down box the browser gives control to the Operating System, so the browser... |
Forum: JavaScript / DHTML / AJAX Mar 12th, 2008 |
| Replies: 8 Views: 9,789 Thanks for your reply, but I'd just already worked out a solution.
When an OPTION in a SELECT has a TITLE attribute, the value of TITLE is automatically shown as a tooltip when you hover over that... |
Forum: JavaScript / DHTML / AJAX Mar 11th, 2008 |
| Replies: 8 Views: 9,789 I have a drop down box of a fixed width. That drop down box needs to contain some values that are longer than the desired width. I'm happy for those values to be truncated, but I would like to... |
Forum: JSP Mar 10th, 2008 |
| Replies: 3 Views: 1,833 You're right, it's not happening at the database.
The values from the form fields are of type HtmlInputText, and the conversion from < to < is happening as soon as the form is submitted.
I have... |
Forum: JSP Mar 4th, 2008 |
| Replies: 3 Views: 1,833 I have a JSP page with some text boxes. The user fills out the form, clicks the Apply button, the inputs get saved to an Oracle 10.g database. The form can be viewed again and the text boxes are... |