Search:
Type: Posts; User: Rxyz
Search :
Search took 0.01 seconds.
figured out what the issue was.
Centering was working fine.
The shaking of the content was due to the vertical scroll bar removal.
when I hit on a button, data gets refreshed. This was...
I am trying to center the below div. It works fine in IE and firefox. But in chrome it centers but is giving the shaking effect on clicking on other buttons in the page. setting the margin 'auto' is...
div-buttonsPanel { position: static; left: 0; top: 0; padding-left:17px;}
div-buttonsPanel ul { width: auto; margin: 0; clear: clearFloat; }
div-buttonsPanel li { margin-bottom: 0; float: left;...
I want the user to enter only alphanumeric(i.e a-z and 0-9) and a "-"(hyphen) in the text field.
How to do this? Thanks.
Thanks, for you response. yes, I understand that that's why I was expecting the resultVal to be -1
I had the statement as
var returnVal = obj1IntValue < obj2IntValue ? -1:1;
Not
var...
I am trying to compare to numbers and it's not working right.
The code is
var obj1IntValue = parseInt(obj1,10);
var obj2IntValue = parseInt(obj2, 10);
...
----- xyz text -----------------------
| |
| |
| ...
we are developing using JSP. How can we do this? is there an easier way to do this?
Thanks.
Have a web page.
There are coupleof submit buttons in it. One of the submit button navigates to another page. But before navigating does save using the values entered in the page.
Is there a...
Is it possible to cache few and not cache the other files. If so how can this be done?
Want to cache css and js files and not cache others.
Thanks.
sorry, nop.
When the user clicks on the link. I wan tot remove all the elements in the form.
i.e clear the form totally. not just one but remove all the form elements.
don't want to do reset. basically want to remove everything in the form when the user clicks on a link.
Form that's used in the webpage has attributes
name
empNumber
depName
if I had to set one of it's attribute value
I was using
Form that's used in the webpage has attributes
name
empNumber
depName
if I had to set one of it's attribute value
I was using
Form that's used in the webpage has attributes
name
empNumber
depName
if I had to set one of it's attribute value
I was using
Have a string as below which is comma seperated.
Tom,42,officer
have to put this as
var x=Tom
var y=42
var z=officer
thanks for your response.
actually I am using struts.
here is the code
struts-config
The below form-bean is session scoped and hence using reset.
<form-bean name="CustForm"...
checkbox checked value is not sent on form submission.
<input type="checkbox" name="split" value="true" onclick="enableName();" id="splitID"/>
do I have to give
value="true". I tried with...
I have to show and hide the below span on some condition
<span class="required" id="numID">*</span>
Thanks.
Is this right?
Internet Explorer does not send the input type of the submit buttons if the form just has 1 text field.
The jsp's that have single input field only are not wokring for me too?
...
may i know what is the default behaviour?
I am working on couple of jsp's.
in some when i input value in input fields and press enter key it submits and in some it is not submitting.
why is this? what is the default functionality?
...
have a input field.
It should allow only alphanumeric values. How to do this?
Thanks.