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 SkipVought 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. PushCode

    how to automatically reassign tasks in sharepoint 2007 designer workfl

    I am tasked with figuring out how to automatically reassign tasks in sharepoint 2007 designer workflow. I know that it's usually done by providing the user with a reassign option in the task completion form, but that won't work for me. Here's a brief overview of the current workflow and what I...
  2. PushCode

    This works in IE, not in Firefox...any ideas?

    Got it! It's working in Firefox and IE! Here's the final working function. Replaced Node.COMMENT_NODE with 8, and replaced textContent with nodeValue. Thanks so much for all of your help Feherke! Thanks also to vacunita! function findacontrol(content,where) { var result if (!where)...
  3. PushCode

    This works in IE, not in Firefox...any ideas?

    Got pulled away. Just tried Feherke's solution: function findacontrol(content,where) { var result if (!where) where=document for (var i=0,l=where.childNodes.length;i<l;i++) { if (where.childNodes[i].nodeType==Node.COMMENT_NODE && where.childNodes[i].textContent.indexOf(content)>0)...
  4. PushCode

    This works in IE, not in Firefox...any ideas?

    findacontrol() is designed to look for comments, then traverse them to find the specified controls. The idea behind this is that All SharePoint form fields have a comment like those below, regardless of input type. Thus this is a one size fits all solution. Again, this works as expected in...
  5. PushCode

    This works in IE, not in Firefox...any ideas?

    I'm sure you're right that this is the fix. I just don't know how to implement it with the other js provided above. I tried replacing my findacontrol function with yours, like this: function findacontrol(where) { var result=[] for (var i=0,l=where.childNodes.length;i<l;i++) { if...
  6. PushCode

    This works in IE, not in Firefox...any ideas?

    turns out, I don't know how to make this work with my code. Can you/someone help me?
  7. PushCode

    This works in IE, not in Firefox...any ideas?

    This is for a SharePoint site. All SharePoint field controls have a <!-- comment --> tag, so I'm using this as a sort of universal identifier. I'll try to incorporate your method and report back...
  8. PushCode

    This works in IE, not in Firefox...any ideas?

    I have the following js that works correctly in IE, but not in firefox. It's just intended to hide a couple of form fields. Using the Firefox error console, I see that the error generated is: "control is undefined" and it points to this line...
  9. PushCode

    Need to manipulate stream I'm reading before displaying on the page

    Thanks Jason. That did it! I really appreciate your help. And I'll be sure to properly dispose of the stream as well.
  10. PushCode

    Need to manipulate stream I'm reading before displaying on the page

    Tried that. I get no errors or obvious issues. It seems to me that it just stops after this line: line = line.Replace("<img border='0' src=", "<img border='0' src=/Parts/"); ...which is why I think I'm missing something. Once I've replaced that '<img...' tag, is there something else that...
  11. PushCode

    Need to manipulate stream I'm reading before displaying on the page

    Thanks for the quick responses. From what I gather, I can use a Regex or a Parser. Sounds like the Parser might be a better way to go. Either way, I don't really care. What I'm struggling with is how to implement it within my code. I have tried adding a parser as follows, but it doesn't...
  12. PushCode

    Need to manipulate stream I'm reading before displaying on the page

    I have the following, which reads an html file from a different server, then displays it on the page in a label. protected void Page_Load(object sender, EventArgs e) { string thePartNo; thePartNo = Request.QueryString["part_no"]; txtURL.Text =...
  13. PushCode

    Evalualing a bool true/false within an asp:label tag

    Thanks Jason, very helpful!
  14. PushCode

    Evalualing a bool true/false within an asp:label tag

    Just looking for someone to confirm that what I have is correct or not. I have an asp:label field for and expire date that should either display "Never" if the database field ([msDS-UserDontExpirePassword] this is a bit - true/false - field) is True, or otherwise display a date (pwdExpireDate)...
  15. PushCode

    This script only works in IE, any ideas?

    Thanks Vacunita, that was it! Really appreciate it. It's always these little things that seem to get past me.
  16. PushCode

    This script only works in IE, any ideas?

    This script works fine in IE...the page responds as though the button were clicked. But not in Firefox, Opera or Safari.<script language="javascript" type="text/javascript"><![CDATA[<!-- /* Service-specific script goes here */ function func1() { document.getElementById('btnSave').click(); }...
  17. PushCode

    Looking for guidance on assigning a status to document libraries

    genadyv, thanks so much for your feedback. This looks like a great solution. If only I was permitted to do back end programming! Unfortunately my hands are tied on this project, but I'll pass this info on the the Admin team.
  18. PushCode

    Looking for guidance on assigning a status to document libraries

    Have a sub-site in which users can create document libraries based off of a template doc library I provide to them. Essentially its just a structure of organized, empty folders. The users are project managers and each time they begin a new project they will create a new doc library for that...
  19. PushCode

    Need help calculating Resource Availability

    FietsenMaker, Thanks very much for your help. This is exactly what I was hoping for. I think I can take your ideas and make this work. Thanks!

Part and Inventory Search

Back
Top