locked
How to make an attribute/field Bulk Editable...? RRS feed

  • Question

  • Hi,

    is there a way to make a field (in this case radio button options) bulk editable? or do you just need to create a workflow..?


    Cheers and regards Rossco
    Tuesday, June 8, 2010 9:05 PM

Answers

  • rather then making read only this field just put java script code on form to disable it as well

    crmForm.all.<<fieldname>>.Disabled = true;

    this way, you can achieve both things.

    • Proposed as answer by mardukes Wednesday, June 9, 2010 6:36 PM
    • Marked as answer by Donna EdwardsMVP Sunday, June 13, 2010 4:42 PM
    Wednesday, June 9, 2010 11:35 AM
    Answerer

All replies

  • I don't recall that there is a step.  Are you sure the attribute is not bulk editable?
    Tuesday, June 8, 2010 9:21 PM
  • I don't recall that there is a step.  Are you sure the attribute is not bulk editable?


    Hi,

    yep, and I have just discovered why it is not bulk editable......it is a read only field. I removed the Read Only option and then could bulk edit OK, however we made it read only as we don't want everyone to have the ability to change the field..

    So, looks like I may have to have another look at security roles/options..


    Cheers and regards Rossco
    Wednesday, June 9, 2010 12:57 AM
  • rather then making read only this field just put java script code on form to disable it as well

    crmForm.all.<<fieldname>>.Disabled = true;

    this way, you can achieve both things.

    • Proposed as answer by mardukes Wednesday, June 9, 2010 6:36 PM
    • Marked as answer by Donna EdwardsMVP Sunday, June 13, 2010 4:42 PM
    Wednesday, June 9, 2010 11:35 AM
    Answerer
  • rather then making read only this field just put java script code on form to disable it as well

    crmForm.all.<<fieldname>>.Disabled = true;

    this way, you can achieve both things.


    True, cheers , thanks MayanKP                                                                                                                                                 mayankP
    Cheers and regards Rossco
    Wednesday, June 9, 2010 10:15 PM