charishma gottumukkula

Greenhorn
+ Follow
since Nov 06, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by charishma gottumukkula

i am using title tag for the tooltip message to get displayed .It is working fine in IE by displying multiline message.But in firfox i am not getting the whole message.Only the part of the message is getting displayed in single line
can anyone help me with this problem
Can please any one help me with the above problem.
This is the code for the function which is working in IE.Can i have the code which works for firefox

function changeSubcategoryList( parent, child ) {
emptyList( child );
if ((parent.options[parent.selectedIndex].value) == '') {
child.options[0] = new Option( 'Select Food Category', '', false, false );
}
else
{
list = categoryList[parent.options[parent.selectedIndex].value];
if (list[0].length > 0)
{
fillListPlus( child, list );
}
else
{
child.options[0] = new Option( 'None', '', false, false );
}
}
}
This the java script code

<%
String onChangeJS = "javascript:changeSubcategoryList(productSearchCommand.categoryId,productSearchCommand.subcategoryId);" ;
%>
The below is the code for populating a second dropdown list based on the selected item from the first dropdown .This code is working fine with IE but note in Firefox


<%
String onChangeJS = "javascript:changeSubcategoryList(productSearchCommand.categoryId,productSearchCommand.subcategoryId);" ;
%>

<tr>
<spring:bind path="productSearchCommand.categoryId">
<td colspan="2" class="grayBkg"><span class="smLabelsBold">Food Category:</span><br />
<wicupc:refselect id="${status.expression}" path="${status.expression}" onchange="<%=onChangeJS%>">
<wicupc:refoptions itemLabel="name" itemValue="ID" referenceValueListName="<%=ReferenceConstants.PRODUCT_CATEGORY%>" sortBy="sortByIdAsNumberWithOther" selectOne="true"/>
</wicupc:refselect>
</td>
</spring:bind>

<spring:bind path="productSearchCommand.subcategoryId">
<td class="grayBkg"><span class="smLabelsBold">Food Subcategory:</span><br />
<wicupc:refselect id="${status.expression}" path="${status.expression}" >
<wicupc:refoptions itemLabel="name" itemValue="ID" referenceValueListName="<%=ReferenceConstants.PRODUCT_SUBCATEGORY%>" selectOne="true"/>
</wicupc:refselect>
</td>
</spring:bind>
</tr>

Can any one help me with the javascript code that also works fine in firefox
It should go into a result variable
18 years ago
The method which return int
18 years ago
I have just started learning java
I just want the sample code to execute that
18 years ago
Can any one help me with the code which as a method that adds 2 Integer objects, returns the int result and that throws the exception java.lang.Exception if either parameter is null
18 years ago
I am creating a small user interface where i got to validate the command buttons.For ex i have a commed button called start or stop,If nothing is selected and the command button is clicked i should get a message called "none of the items are selected"

Can anyone please help me with the sample code
18 years ago
JSF
what are incompatibilities between java web services and .Net client?
18 years ago
Can we have parameterized constructor in java ?
18 years ago
In J2EE, what is the best approach to store static constants?
If an object is garbage collected can we retain it back or create a new object
18 years ago
if something is added or deleted from session how it can be know
18 years ago