Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. aigarzzz

    rewrite #

    i need a develop ajax based browsing, for example www.mysite.com/#articles?type=1, www.mysite.com/#articles?type=2 etc. are urls for ajax based browsing, but when i write this link in new IE window i must get rid of # sign: www.mysite.com/#articles?type=1 =>>> www.mysite.com/articles?type=1 how...
  2. aigarzzz

    object doesn't support this property or method

    no it didn't help:(
  3. aigarzzz

    object doesn't support this property or method

    <html> <head> <script type="text/javascript"> function login() { alert("Hello World!") } </script> </head> <body> <form action="#" method="post" /> Login:<input type="text" name="name" id="login" /> <button type="button" value="Click me!" onclick="login()" /> </form> </body> </html> why the...
  4. aigarzzz

    create dynamically a form

    myform=document.createElement("form"); myinput = document.createElement("input"); myinput.setAtribute('type','text'); myinput.setAtribute('name','formName'); myform.appendChild(myinput); i dont understand why it doesn't work..
  5. aigarzzz

    javascript validator

    today i discover wonderful form validator - TMT validator (http://www.massimocorner.com/validator/index.htm), but it doesnt work with xajax:( maybe there is similar open source form validator, which can work with xajax?
  6. aigarzzz

    display:none to table rows

    difference between IE6 and FIREFOX is that IE6 text '2nd row content' is placed in 2nd row 1st and 2nd cell (colspan=2), but in Firefox only in 2nd row 1st cell(colspan=1)
  7. aigarzzz

    display:none to table rows

    i just test it on IE6 and there everything is fine. Problem is when i use Firefox!
  8. aigarzzz

    display:none to table rows

    content align to 2nd row 1 cell right corner after style="text-align:right"...
  9. aigarzzz

    display:none to table rows

    <table> <tr id="first"><td>1cell</td><td>2cell</td></tr> <tr id="second" style="display:none"><td colspan="2" >2nd row content</td></tr> </table> and the javascript: document.getElementById('second').style.display = 'block'; why second row td colspan=2 dosn't work - text '2nd row content' is...
  10. aigarzzz

    delete rows by id

    yes, that works!! Thank You:)
  11. aigarzzz

    delete rows by id

    i have a table: <table> <tr id="a1"><td></td></tr> <tr id="b1"><td></td></tr> <tr id="a2"><td></td></tr> <tr id="b2"><td></td></tr> </table> how can i delete a1 abd b1 rows by it's id?
  12. aigarzzz

    open source grid

    i must make something like http://www.telerik.com/r.a.d.controls/Grid/Examples/DataEditing/TemplateFormUpdate/DefaultCS.aspx Please suggest me similar open source ajax/php solutions!
  13. aigarzzz

    get right form

    Thanks:) I'm trying to make something like http://www.telerik.com/r.a.d.controls/Grid/Examples/DataEditing/TemplateFormUpdate/DefaultCS.aspx Maybe there is some open source javascript/php framework or libraries, which can help me in this task?:)
  14. aigarzzz

    get right form

    i have many forms and when i want get some form values i cant do that: function updateForm(id) { ..... document.forms.id; ..... } in this function i pass id parameter which form i must process, but there is no allowed document.forms.id construction, because id is variable. How can i get...
  15. aigarzzz

    insert form in table row

    i have serious problem. I'm trying to make datagrid like this one - http://cristian.nexcess.net/ajax/grid/ , but i dont understand how i can in table row make form of all cells. Code: roomRow[0].innerHTML = '<input class="editName" type="text" name="name" '+ 'value="' +...

Part and Inventory Search

Back
Top