I really can't find how i can retrieve the value from a currency field and set it as a value for another currency field for another entity.

My following code is not working:

var entities = retrieveRecords("trainingSet?$filter=trainingId eq guid'" + GetLookUpData("trainingid").id + "'");
    if (entities != null) {
        if (entities.d.results.length > 0) {
            if (entities.d.results[0]["Price"] != null) {
                alert(entities.d.results[0]["Price"]);
                Xrm.Page.getAttribute("price").setValue(entities.d.results[0]["Price"].getValue());
                Xrm.Page.getAttribute("price").setSubmitMode("always");
            }

        }
    }

Error sais that the control only except numbers or null.

Any help would be really appreciated! Thanks!

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I have used this before even though I am not a fan of the eval.

function SetMoneyAttribute(value, attribute) {
                      Xrm.Page.getAttribute(attribute)
                    .setValue(parseFloat(eval(value)));
        }

here is a blog post about setting form fields with queried values.

http://crmscape.blogspot.com/2011/03/crm-2011-odata-json-and-crm-forms.html

link|improve this answer
Thank you! Great article too :) – ThdK Aug 25 '11 at 14:04
You should only need to use parseFloat, you shouldn't need the eval that you currently have in that function. Same goes for picklist values and using parseInt (note you should specify the radix when using parseInt). – GotDibbs Aug 30 '11 at 4:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.