Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
L

lahari_padigala

@lahari_padigala
About
Posts
2
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Cannot get checkbox element in Datagrid using javascript in FF
    L lahari_padigala

    I need to first find my check box and if the check box is checked then i need to get the InnerText. I got the solution for the above. Modified the function as below. function ReadData() { var grdContacts = document.getElementById('grdContacts'); var hiddenContacts = document.getElementById('hiddenContacts'); var rowCount = grdContacts.rows.length; if(rowCount > 1) { var browserName=navigator.appName; for(var count =1; count

    ASP.NET javascript

  • Cannot get checkbox element in Datagrid using javascript in FF
    L lahari_padigala

    I have a checkbox in a datagrid and when i check the items and press addbutton i need to add all the checked rows value into hidden field.the add button calls the function readData() on client side. the code was working fine with IE but it was not woking with mozilla function ReadData() { var grdContacts = document.getElementById('grdContacts'); var hiddenContacts = document.getElementById('hiddenContacts'); var rowCount = grdContacts.rows.length; if(rowCount > 1) { var count =1; for(; count < rowcount ; count++) { if(grdContacts.rows[count].cells[0].childNodes[0].childNodes[0].checked == true) { hiddenContacts.value += grdContacts.rows[count].cells[2].innerText + ";"; } } }

    ASP.NET javascript
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups