Advertisement

02.11.2008 at 06:33PM PST, ID: 23155035
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.2

javascript comparing numbers

Asked by PNKJ in JavaScript

Hi I have javascript function which doesnot allow the user to enter the amount in a text box if the
amount entered in fundsamount text box is greater than remaining funds. Remaining funds is a text box and is pre populated from database with $ sign in front
like($5000.00).
Alert should be displayed in both cases whether the user enters a $ sign or not in front of the numbers

My problem is that my alert does not display the correct number if the remainingfunds is $888.00
the alert shows 88.0 so if the user enters 800.00 it gives the alert which is wrong since it compares 800 with 80 instead of 800 with 880

The alert should also be displayed if the remainingfunds is a -ve number  diaplyed as ($9,314.24) on screen.


      function IsNumber(e)
    {      
            var num = e.value.replace(/[$]/,"");
            var num = e.value.replace(/[,]/,"");
             num = num.toString().replace(/[^0-9.]/g,'');
            return num;
    }  


function SubFundAmount()
        {
            var Remainingfunds= IsNumber(window.document.getElementById('<%=remainingfunds.ClientID %>'));
            var fundsAmount  = IsNumber(window.document.getElementById('<%=fundsamount.ClientID %>'));
                var Remainingfunds= = parseFloat(RemainingBudget.substr(1))
           
   alert(Remainingfunds)
               
            if fundsAmount  > Remainingfunds)
                {
                       alert("WARNING:  amount cannot be greater than remaining fund.");
                       window.document.getElementById('<%=fundsamount.ClientID %>').focus();
                         window.document.getElementById('<%=fundsamount.ClientID %>').select();
                             return false;
                   }
                  else
                      {
                           
                            window.document.getElementById('<%=notes.ClientID %>').focus();
                            window.document.getElementById('<%=notes.ClientID %>').select();
                            return true;
                      }
           }  



I also have the ffollowing function in my common js file that is included in the page

function ValidNumber( formElem )
      {      
            
            if (formElem.value == "") formElem.value = "0";
            return formElem.value;
      }
                            Start Free Trial
[+][-]02.11.2008 at 06:39PM PST, ID: 20872178

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: JavaScript
Sign Up Now!
Solution Provided By: hielo
Participating Experts: 3
Solution Grade: B
 
 
[+][-]02.11.2008 at 06:46PM PST, ID: 20872197

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]02.11.2008 at 07:53PM PST, ID: 20872417

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.11.2008 at 07:58PM PST, ID: 20872432

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.12.2008 at 02:30AM PST, ID: 20873708

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]02.12.2008 at 05:40AM PST, ID: 20874566

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.12.2008 at 08:01AM PST, ID: 20875955

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.12.2008 at 08:07AM PST, ID: 20876024

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.12.2008 at 08:34AM PST, ID: 20876333

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.12.2008 at 09:46AM PST, ID: 20876982

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.12.2008 at 10:31AM PST, ID: 20877343

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.12.2008 at 12:17PM PST, ID: 20878414

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.12.2008 at 12:51PM PST, ID: 20878823

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.12.2008 at 03:09PM PST, ID: 20880226

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628