User Profile

Collapse

Profile Sidebar

Collapse
TheVillain9
TheVillain9
Last Activity: Feb 3 '07, 06:40 PM
Joined: Sep 18 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • TheVillain9
    replied to dynamic checkbox selection
    This is all within an aspx web page, but there is a whole bunch of other stuff going on, so i made a quick sample for a simple page. The checkboxes are selected in FF , but not IE6...any ideas? I can't get either to be checked when I essentially have this in my aspx page. Thanks for the help.

    Code:
    <html>
    <header>
    <script language="javascript"> 
    	function loadPort() {
    		
    		var
    ...
    See more | Go to post

    Leave a comment:


  • TheVillain9
    replied to dynamic checkbox selection
    well basically i have a div called 'portfolio_box' within my form, where i append all the checkboxes i create. so i don't understand why it doesn't work in IE(6.0.2900) or FF(2.0.0.1) for me....
    See more | Go to post

    Leave a comment:


  • TheVillain9
    replied to dynamic checkbox selection
    sorry i actually copied the wrong thing, but this helps. only problem is when...

    Code:
    if( "True"=="True") {
    	chkbox.onclick= function() {alert('hi')};
    	[B]chkbox.checked=true;[/B]
    }
    i want to check the checkbox, but that doesn't seem to work. suggestions...
    See more | Go to post

    Leave a comment:


  • TheVillain9
    started a topic dynamic checkbox selection

    dynamic checkbox selection

    I'm basically using AJAX and returning a bunch of information through XML and creating a checkbox. If the the XML returns that the checkbox should be set to true, check it, otherwise leave it empty. Below is my iteration when i go through the xml document. also i'd like to have the checkbox call a function when clicked, but I can't get it to work in both IE & Mozilla. Thanks for the help.

    Code:
    var chkbox = document.createElement('input');
    ...
    See more | Go to post

  • TheVillain9
    started a topic php soap server/client
    in PHP

    php soap server/client

    i'm working on a php soap server. i'm not entirely sure if my problem is with the server or just if i need to do something else on the client side.

    basically i created a sample client at:
    http://67.96.115.172/dev/client.php

    the server is suppose to return back an array of an object called City, which has city code,name,count ry and country_code. on the client when i try to iterate through the array i am doing......
    See more | Go to post

  • TheVillain9
    replied to Hashtable deep copy
    in .NET
    Answer:

    (Universe[i] as Hashtable).Clon e() as Hashtable
    See more | Go to post

    Leave a comment:


  • TheVillain9
    started a topic Hashtable deep copy
    in .NET

    Hashtable deep copy

    I'm adding key-values to my hashtable (company_data), but everytime I add something new, it adds it to the element from which the hashtable was derived, Universe[ i ]. Universe is just an arraylist of hastables that is declared as a member of the class. Its creating a reference i'm guessing to the original element instead of copying just the actual values. How do I fix this?

    Code:
                for(int i=0; i<Convert.ToInt32(Universe.Count*0.1);
    ...
    See more | Go to post
No activity results to display
Show More
Working...