Can't Add Items To Parent

May 26, 2009

I am trying to add selected dropdown items (in a popup window) to a hidden input field (inside the parent window). Here is the function I am using but it does not seem to work. Any ideas on what changes I need to make to get it to work?

Code JavaScript:

function addSelectedItemsToParent(domainid) {
self.opener.editdomains.parentList[domainid].value = window.document.forms[0].category_1;
window.close();
}

View 7 Replies


ADVERTISEMENT

JQuery :: Superfish Parent Items And Images?

Dec 1, 2010

I'm building a Joomla site with Superfish vertical. I'm bogged down on 1 issue: parent itemid linked to specific images and how to make this work. My menu has 5 parent items. The child items are not an issue.My question is this: Does anyone know how to make linked parent/item id & images work together ? This may be more of a CSS issue than a script question but I thought I'd pass it by here as I'm getting "0" responses elsewhere and there could be a php/js script aspect to this.There is a bit of code (line 67-87 of superfish/tmpl/default.php) that has me concerned and it might turn out to be why this doen't work, I include it below. I'm pretty much illeterate when it comes to js /php but I can make out just enough to know it could impinge (either + or -) on what I'm trying to do.

if (($node->name() == 'li') && ($id = $node->attributes('id'))) {
if ($node->attributes('class')) {
$node->addAttribute('class', $node->attributes('class').' item'.$id);

[code]....

View 6 Replies View Related

JQuery :: Using Parent And Children To Manipulate Items?

Jul 27, 2010

I'm trying to manipulate items in a table using jQuery, using the parent() and children() methods of the "this" object. I think I'm not understanding how to use the parent and children methods correctly.

What I want the code to do is to show the list and button within the <td></td> when clicked on, and then hide it when the newly shown button appears.

[Code]...

View 5 Replies View Related

Drop Down Submenu Blocking Parent Items?

Aug 6, 2010

I am working on a site with a left menu that slides out, and I've converted it to the top to drop down. So far, it is working ok, but the submenu items need to be below the parent, preferably left aligned. I have played with it a bit and so far can't seem to achieve what I want. See below where I'm clicking Resources and the menu is way too high and over to the right.

//** Dynamic Drive Equal Columns Height script v1.01 (Nov 2nd, 06)
//** http://www.dynamicdrive.com/style/blog/entry/css-equal-columns-height-script/
var ddequalcolumns=new Object()

[code]....

View 2 Replies View Related

Add Selected Checkbox Items From Child Window To Parent

Jun 11, 2010

I need to add selected items using checkbox from child window to parent inside a form element. I also would like to have delete link besides the added elements so that it can be deleted. I have the child window poping up for selection and trying to achieve, adding selection to the parent form along with the values and link besides it to delete the added elements.

View 1 Replies View Related

JQuery :: [apycom Menu] Submenu Items Showing As Top Level Items In IE?

Jan 10, 2010

version of Apycom's jQuery menu; you can find itat http://apycom.com/ and it is looking really good.I have uploaded files, and published it on a test site - www.flexin.beUnfortunately, some of the submenus starting from the second that haschildren elements, it adds the item on the top level in InternetExplorer.Does anyone on this list has any experience with this library?

View 2 Replies View Related

Copying Listbox Items - Do All The Movement Functionalities Of The Listbox Items Client Side

Feb 25, 2011

I have an ASP.net page where I load a record set server side and upload it into a listbox. I'm trying to do all the movement functionalities of the listbox items client side. Specifically, I'm trying to figure out how to copy selected listbox items from one listbox to another -- on button click. I've searched for a while, but every example that I found moves the actual item into another listbox, I just want to copy the selected item to another listbox.

View 6 Replies View Related

JQuery :: Element Overflows Containing Block When Parent Border/padding Change - Not When Parent's Margin Changes

Sep 24, 2011

Demonstration page: [url]

Adjust the CSS margins of the BODY element with the first slider. The yellow P (paragraph) element resizes to fit its smaller containing block, as I would expect.

Then, adjust the CSS border or padding of the BODY element with the second and third sliders. The P element does not resize, though its origin changes. Instead, it overflows its containing block.

Finally, adjust the margins again. The P element snaps back into its containing block.

As you can see from the source, this is jQuery 1.6.4 and jQueryUI 1.8 pulled from googleapis.com.

Edit: Client is Google Chrome16.0.889.0 dev-m.

View 2 Replies View Related

Posting Parent And Iframe From Parent?

Aug 27, 2010

I have a page which has a form and also one iframe in the same. there is a button on the parent form.when the button is clicked, i am submitting the iframe and parent both. forms are getting submitted. but when i do print_r for iframe values, it is blank

[Code]...

View 1 Replies View Related

Create Menu Items And Sub Menu Items?

Apr 23, 2009

Can we create menu items, sub menu items using javascript coding.

View 2 Replies View Related

Refresh Parent.parent From A Pop Up?

May 12, 2010

I have a page. In that page is an iframe, lets name it 'A'. inside A there is another iframe 'B'. there is a link on that page which on click opens a popup. In that pop up, there is actually a document upload facility. Now i want that after every upload (onSubmit), iframe A should refresh.

have done it many times but today its not working.

function validate() {
(window.parent.opener.location.href)=(window.parent.opener.location.href);
window.parent.opener.location.reload(true);// this is tried as well
}

View 3 Replies View Related

Add Items....

Jan 14, 2004

OK, what I want to do is difficult to explain so please read through. I want to find some way to add items to a form but not have that form submitted to the database just yet, not until it is completely filled with valid items.

On my webpage I have 3 columns and I display a list of items the right hand column. In the center column I have a form with place-holders visible but no items actually entered/chosen yet.

The user clicks on an item (link) in the right hand column and this item should then appear/replace (i.e. it has been added to the users selection in the center column) a place holder in the center column.

I am populating the right hand column from a MySQL database using PHP, but I posted this in the Javascript forum because I think maybe Javascript would be good to use to do this.

View 2 Replies View Related

Deleting Items

Oct 21, 2005

I add items to a list of ids within a <TD> named lstCarts using the
following code:

function lstCarts_ondblclick()
{
index = NewProgram.lstCarts.selectedIndex;
if (index != -1)
{
vID = NewProgram.lstCarts.options[index].value;
vText = NewProgram.lstCarts.options[index].text;
NewProgram.lstNewCarts.options[NewProgram.lstNewCarts.length] = new
Option(vText);
NewProgram.lstNewCarts.options[NewProgram.lstNewCarts.length -
1].value = vID;
eval("NewProgram.Item" + vID + ".value = " + vID);
}}

This works fine. When I highlight an item in lstNewCarts and click on
a button to delete these items from the list the following code is
executed. This doesn't work becauset the selected item does not
disappear from the list.

function lstNewCarts_ondblclick()
{
index = NewProgram.lstNewCarts.selectedIndex;
if (index != -1)
{
vID = NewProgram.lstNewCarts.options[index].value;
vText = NewProgram.lstNewCarts.options[index].text;
eval("NewProgram.Item" + vID + ".value = -1");
}}

View 3 Replies View Related

Code Won't Let Me Have More Than 9 Items - Fix It?

Feb 26, 2010

I have some javascript code that enables me to add optional extras via drop down boxes to a total (via an input form text box). Problem is I can add upto 9 different drop down boxes with different amounts that add up in the total box but when I add a tenth it wont add the tenth one up, can anyone helo me I looked through the code and cant suss it out. code...

View 8 Replies View Related

Selecting Items In A List Box

Jul 23, 2005

I have a javascript index that is similar to the one in the Windows
help. It has a text field that allows the you to type text and it
finds the closest item in the list below the text field. The list is
simply a select element with options that looks like this:

<SELECT>
<OPTION VALUE="1">A
<OPTION VALUE="2">B
<OPTION VALUE="3">C
</SELECT>

My problem is when I have a large list, the closest entry selects the
item in the list at the bottom of the list box, not the top of the
list box.

So here's the question: Is there a way to get the list box to display
the selected item and move it to the top of the list and not just find
it at the bottom?

To get an idea of what I 'want' it to look like, in Windows, go to
Help & Support (in XP it's in your start menu) and pick Index. I
basically want it to mirror that functionality.

View 1 Replies View Related

Remove Items From A Combobox

May 26, 2007

I'm creating a combobox using the Javascript and the DOM.

If the combobox exists, i don't want to create another one. I want to empty all the values and put new values.

I was able to create the combox and create the lines of code that deletes the values in the combobox (well almost) .....

View 1 Replies View Related

JQuery :: Binding Items Of The Same Id?

Dec 17, 2010

I'm having trouble with a plugin system that I'm working on. It involves binding a doubleclick with two elements that have the same id. The two elements are different plugins, and load appropriately, however the dblclick binding seems to not change between elements. Here's my code(simplified):

$("div.editor").droppable({
drop: function(event,ui) {
objID = ui.draggable.attr("objID");
$.getJSON("objects/"+objID+"/object.json", function(data) {

[Code]....

View 1 Replies View Related

JQuery :: Changing Two Items With The Self Id?

Jul 28, 2010

I'm all new to jQuery and have the following problem. I'm sure the pros here can give me a hint, how i do it the right way:

<div class="images">
<img id="id-14" src="Jack" />
<img id="id-22" src="Dan" />

[code]....

View 1 Replies View Related

JQuery :: Find Items In A Td?

Sep 28, 2010

I have dynamic html table , Now I want to find the items in the first column. The column name(td) is chk. How can do this using Jquery ?

View 2 Replies View Related

JQuery :: Items Move Up And Down?

Jan 24, 2011

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

[code]....

View 2 Replies View Related

JQuery :: Show Top Items (LI's) Of UL's?

Apr 26, 2010

I have multiple ul with multiple actions on 'button' changes, i.e.:

<ul>
<li></li>
<li></li>
<li></li>
<li></li> <--this is to be hidden
</ul>

[Code]...

The UL's are to show top 3 items let's say, and hide the rest. When items are hidden on page load [top 3], the Show button is on. When that is clicked, it shows all LI's for that UL and button/link text changes to Hide, and hides all other items of all other items of other UL's apart from their top 3 items.

When the items show, and the text/image is changed to Hide, hide's on click should also hide that UL's items and only show three items for that UL. 3 items are always shown.

View 24 Replies View Related

Put Preexisting Items In To An Array?

Feb 5, 2009

I have a site that uses bullet points. I am able to add and delete these bullets as needed. The problem i face is every time I add a new bullet and update the page all the bullets that are already there are saved again. for example lets say I have in my list:

[Code]...

So I was thinking that I could get an array of all the existing bullets and then say if the new bullet is not part of the array update it. If anyone else has any other ideas of how i could make this work I am glad to hear them. If you need code just let me know.

View 3 Replies View Related

Count The Items In Combo Box 2?

Nov 30, 2009

I have 2 combo boxes where you can move the items in combo box 1 to combo box 2. I want to validate that combo box 2 actually has something moved to it. How can I count the items in combo box 2. Combo box 2 will initially have no items in the box on page load. It is up to the user to move the items to combo box 2 and I want to make sure at least 1 item was moved.

View 3 Replies View Related

Can't Combine Shipping Across Items?

Dec 2, 2010

Right now this javascript shopping cart works to 1. charge shipping based on the item, 2. the destination country, 3. it combines shipping for a quantity over 1 of the SAME item.Each item has 2 different possible shipping charges. I am trying to get the javascript to check the shopping cart to see what item in the cart has the highest possible shipping charge, charge that amount to that item, and charge the lowest possible shipping charge on all other items in the cart. If item A is purchased alone shipping is $5.00.If purchased with item B, which costs $10.00 to ship alone, the $10.00 is charged for item B and only $3.00 for item A. Because item B had the higher shipping charge at a quantity of one.

I have tried adding various things like me.items[current], item.shipping, me.shipping, this.shipping, shipping_Cost, and other things next to the second && in the part of the script that shows the country. I have also tried adding && if (me.whatever) and && if (item.whatever) and similar things at the beginning of the script next to if (this.country). I have found the parts of the script that pertain to cart items and to updating the shopping cart.The javascript is in 2 parts. One part goes in the item page, which I will post first. The second part goes in an external javascript file which I will post at the bottom. In between there is the part that shows the shopping cart. It isn't part of the javascript.

<script type="text/javascript" src="simpleCart.js"></script>
<script type="text/javascript">
<!-- [code]......

View 2 Replies View Related

Zebra Items Not Responding To Changes

Aug 3, 2011

I am building a shopping cart in Volusion. I've come really far and can find my way around HTML and CSS.But the template I am using has a zebra function that it uses on the shopping cart screen. The colors it is using are terrible, and I can't figure out how to change them.By zebra, I mean it picks every other row in a table and assigns a different background color. I am noticing in firebug that the div-ids of the items in the cart have div-ids taht are not listed in any of the CSS files in the theme.I figured out that this type of coding is usually done in JavaScripting. I tried editing that file in every logical way, and I can get no response out of it aside from my browser hanging. I even tried commenting out different sections.

I'm not sure if you are at all familiar with Volusion, but they provide absolutely no assistance and try very hard to make things as hard as possible so customers will be desperate for their design services. All support will say is, "we are prohibited from providing any coding information. Would you like me to transfer you to sales?" They routinely remove resources that were once helpful. Nice customer service.

View 3 Replies View Related

Get Selected Items From Listbox

Jan 18, 2007

Could some one help me build a simple quick function to get the selected items in an HTML listbox and add them to a string var? I need to have the values seperated by "~"

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved