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 Mike Lewis 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. mravimtnl

    Jquery-Not working in IE8

    Thanks for responses. Now my code is functioning in IE 8 also. regards
  2. mravimtnl

    Java Script/Jqery-Wss Integration for ccutom listforms

    Hi ultimately i got this by using this code in jquery. trust the same is helpful. I called child page fromp parent page using java script. In child page i have kept this jquery to pass the data from parent page to child page. <%@ Page Language="C#" %> <html dir="ltr"> <head> <META...
  3. mravimtnl

    Jquery-Not working in IE8

    Hi Thanks for responses. I figure out my mistake. I am calling this page from cross domain thefore the fileds are not getting populated (access denied error). regards ravi
  4. mravimtnl

    Jquery-Not working in IE8

    Hi I am using the following jquery code. it is working in IE-7 but not in IE-8. Pls help me <script type="text/javascript" src="/hr/_themes/Cardinal/jquery-1.7.min.js"></a>"></script> <script type="text/javascript"> $(document).ready(function(){ var letternu= $("[title='Letter...
  5. mravimtnl

    object requried error

    Hi feherke (Programmer) Thanks for your prompt responses. My goal is to build form as given in this site. http://resources.lawinfo.com/letters/frm_SimpleWill.cfm?act=fill&utm_source=lawinfo_homepage_5b&utm_medium=link&utm_content=write%2Byour%2Bown%2Bwill&utm_campaign=letters I am wondering...
  6. mravimtnl

    object requried error

    I have tested in my desktop . It is functioning correctly. But it is not working in server. Any inputs. Pls also suggest me how can insert the variables in paragraph. thanks in advance
  7. mravimtnl

    object requried error

    I have share point list form. I want to grab the values from list and inset in popup for printing. For example, this is is the list form ______________________ Name > Text Box Joined=Date Picker Location= Dropdown. button for printing ______________________ if a user clicks on button for...
  8. mravimtnl

    object requried error

    Thanks for help. I have used. I am getting error undefinedundefined <head> <meta http-equiv="Content-Language" content="en-us"> <script type="text/javascript"> function open_win() { try{ var x=parent.document.getElementById('Text4').nodeName; var...
  9. mravimtnl

    object requried error

    I am getting an error of object required in the following code. Pls help me. <head> <meta http-equiv="Content-Language" content="en-us"> <script type="text/javascript"> function open_win() { try{ var x=parent.document.getElementById('1.Text1').nodeName; var...
  10. mravimtnl

    Java Script/Jqery-Wss Integration for ccutom listforms

    Hi I am new to java script and WSS. I have created custom list forms in wss/Moss. However, i want to embed the list values in the contenet as shown in the following website: http://resources.lawinfo.com/letters/frm_BankError.cfm?act=fill That is user inputs in New form.aspx for printing he...
  11. mravimtnl

    Creating HTML or asp forms in WSS 3.0

    HI I am new bee to wss. I wan to create HTML/ ASP form with content in it. I treid custom List forms but they did not workout becoz formatting the fileds and combining with the text is difficult in Share Point Desginer 2007. For example, for the attached Form i have created four colomns (three...
  12. mravimtnl

    To find corresponding value of a formula filed

    In group footer 1 that is the minimum time is grouped with badge number (Which is group 1) and I want panel name adjacent to the time.
  13. mravimtnl

    To find corresponding value of a formula filed

    Minimum(time stamp,Badge number) is my formula. The time filed is in time format not a string.
  14. mravimtnl

    To find corresponding value of a formula filed

    Dear all I have the follwoing table thru which i am finding minimum time of enty. Badge number time stamp Panel Name 2465 9. am Main Gate 1 Entry 2465 10. am LPG Gate 1 EXIT 2465 10.40. am TurnstGate 1...
  15. mravimtnl

    MULTIPL CRITERIA FORMULA USING IF

    Thank for your support. I got the desired result using this formula NUMBERVAR F7; if Not isnull({@f1}) then F7:= {@f1} else if Not isnull({@f2}) then F7:= {@f2} else if Not isnull({@f3}) then F7:= {@f3} else if Not isnull({@f4}) then F7:= {@f4} else if Not isnull({@f5}) then F7:= {@f5} else...
  16. mravimtnl

    MULTIPL CRITERIA FORMULA USING IF

    I have tried this formula also: NUMBERVAR F7; IF (Not isnull({@f1}) or {@f1}>0) THEN F7:={@f1} else if ( Not isnull({@f2}) or {@f2}>0) then F7:= {@f2} else if (Not isnull({@f3}) or {@f3}>0) then F7:= {@f3} else if (Not isnull({@f4}) or {@f4}>0) then F7:= {@f4} else if (Not isnull({@f5}) or...
  17. mravimtnl

    MULTIPL CRITERIA FORMULA USING IF

    I have re written formula like this. But only the first statement is being executed. i.e whenever there is a value it is being picked up for f1 but remaining others are shown as null: NUMBERVAR F7; IF {@f1}>0 THEN F7:={@f1} else if {@f2}>0 then F7:= {@f2} else if {@f2}>0 then F7:= {@f3} else...
  18. mravimtnl

    MULTIPL CRITERIA FORMULA USING IF

    i HAVE FOUR FORMULAS F1,F2,F3,F4. iN THESE ON OF THE M WILL HAVE VALU GREATER THAN OTHER EQUAL TO ZERO OR NULL VALUES. i HAVE CREATED FORMULA F5 TO GET THE VALUE WHICH IS MORE THAN 0 OUT OF FOR FORMULAS: NUMBERVAR F7 IF F1>0 THEN f7:=F1 ELSE IF F2>0 THEN F7:=F2 ELSE IF F3>0 THEN F7:=F3 ELSE...
  19. mravimtnl

    Splitting filed

    i have field named Udf Gen Id with corresponding Vlaues in Un number for each badge. The table looks like this Badge Number Udf Gen Id Udf Number 2365 53 1 54 0 2388 53...
  20. mravimtnl

    error in formula

    in the details section i have the following fields details _____________________________________________________________ badge number - time stamp - udf genid- udf number 6528 07/08/2001 1630 53 0 6528 07/09/2001 830 54 1 6528...

Part and Inventory Search

Back
Top