Forum: JavaScript / DHTML / AJAX Jun 30th, 2009 |
| Replies: 25 Views: 1,581 Airshow,
It works GREAT!!! I had to change the alternating colors a little. I was alternating with the <tr> tag and changed to using the <tbody> tag, but it doesn't matter. It works. AWESOME!!!!!!... |
Forum: JavaScript / DHTML / AJAX Jun 30th, 2009 |
| Replies: 25 Views: 1,581 No Problems with FF. This is an internal only website and all my users will be using IE. If they are trying to access it with FF and have problems, then I will just tell them that they have to use... |
Forum: JavaScript / DHTML / AJAX Jun 30th, 2009 |
| Replies: 25 Views: 1,581 Airshow,
Thank you so much for the code. It is working beautifully. I have one more small thing to ask. I have alternating row colors to help differentiate the rows like this:
<% if i mod 2 =... |
Forum: JavaScript / DHTML / AJAX Jun 30th, 2009 |
| Replies: 25 Views: 1,581 Trying it out now....will let you know how it works. Thanks for all of your hard work on this.
JSV |
Forum: JavaScript / DHTML / AJAX Jun 30th, 2009 |
| Replies: 25 Views: 1,581 OK.
Waiting (for the most part) patiently.
Thank you,
JSV |
Forum: JavaScript / DHTML / AJAX Jun 30th, 2009 |
| Replies: 25 Views: 1,581 Airshow,
Thanks for the update. I did find this on dhtmlX website. Looks like this guy is trying to do the same thing, but since I don't know ANYTHING about javascript, I'm not sure what the... |
Forum: JavaScript / DHTML / AJAX Jun 30th, 2009 |
| Replies: 25 Views: 1,581 I commented out the lines that you told me and I'm still having the same issue. I would do a web search, but not sure what to search for. This is too bad, becuase your code works so well for... |
Forum: ASP Jun 30th, 2009 |
| Replies: 4 Views: 718 It sounds like you are sending mail using text format. Make sure that you include this in your script:
myMail.BodyFormat = 0
myMail.MailFormat = 0
Also, is the name supposed to equal... |
Forum: JavaScript / DHTML / AJAX Jun 29th, 2009 |
| Replies: 25 Views: 1,581 I finally figured out why the cloned rows won't populate the combobox. This code is the culprit:
<script>
var z=dhtmlXComboFromSelect("leave<%=i%>",200);
z.enableFilteringMode(true);... |
Forum: ASP Jun 29th, 2009 |
| Replies: 1 Views: 501 Try this:
elseIf msrankpriv <> "0" Then
sSQL = "UPDATE memberSports SET msrankpriv = '" & msrankpriv & "' WHERE msMember = '" & memberId & "'"
objConn.Execute sSQL
sSQL = "UPDATE memberSports... |
Forum: ASP Jun 29th, 2009 |
| Replies: 4 Views: 718 Your Code should look like this:
strBody = strBody & "<a name=" & anchor & " id=" & (rsEmailAlert.Fields.Item("S_Id").value) & " href='http://www.hair-salons.com/Hair-Salon-Search.asp'>Click... |
Forum: JavaScript / DHTML / AJAX Jun 28th, 2009 |
| Replies: 25 Views: 1,581 Sorry, didn't see the post about the deleting of the row. If you can supply the code to remove that would be great. When the data gets posted, I am going to put it all into an array so when I go... |
Forum: JavaScript / DHTML / AJAX Jun 28th, 2009 |
| Replies: 25 Views: 1,581 Airshow,
Thank you again for the new code, most of it is working now. On the cloned rows, it is still not populating the Client/Description combobox. The combobox is populated on the main row, so... |
Forum: ASP Jun 28th, 2009 |
| Replies: 3 Views: 516 It don't have to be an autonumber field, that's just usually how they are numbered. However you are doing the lookup, I would use the identity field that you set for each user to lookup the value and... |
Forum: ASP Jun 28th, 2009 |
| Replies: 3 Views: 516 JooClops,
When you create the radio button, assign it a value of the database id for that user. I am assuming that you have an autonumber value in the database for each user when they get created.... |
Forum: JavaScript / DHTML / AJAX Jun 27th, 2009 |
| Replies: 25 Views: 1,581 One more thing, can I put a [-] next to the newly created rows in order to delete those rows just in case the user made a mistake and needs to remove an extra row?
Thank you |
Forum: JavaScript / DHTML / AJAX Jun 27th, 2009 |
| Replies: 25 Views: 1,581 Airshow,
Thank you so much for your help. Most of the code that you supplied worked GREAT!! What didn't work was my onchange call
onchange="showCols(<%=i%>);
My Combobox under the... |
Forum: JavaScript / DHTML / AJAX Jun 24th, 2009 |
| Replies: 25 Views: 1,581 I have a web page where the users are supposed to be able to click a button to add a new table row. I have tried various javascripts found online but I am not a javascript person. The page is written... |