Jump to content

Ilyrian

Caspio Ninja
  • Posts

    39
  • Joined

  • Last visited

  • Days Won

    3

Community Answers

  1. Ilyrian's post in Change Background Color of Text Area was marked as the answer   
    Hi @RonAnderson

    You can reference the TextArea by its ID. For example, if my textarea:
    so you can use the following CSS code:
     
    <style> #InsertRecordTextArea1 { background-color: red; } </style>



  2. Ilyrian's post in User Message was marked as the answer   
    Hi @RonAnderson

    Please try the following: 
     
    CASE WHEN '[@cbParamVirtual12]' = 'https://www.filestore.com/NoImage.jpg' THEN 'No Image' ELSE 'Image Is Available' END
    OUTPUT:



  3. Ilyrian's post in uncheck if was marked as the answer   
    I can see that you are using Details DataPage. In this case change the following  part of the code  from:
     
    var checkbox1 = document.getElementById('InsertRecordhandover') var checkbox2 = document.getElementById('InsertRecordapproved') var textfield1= document.getElementById('InsertRecordprocess_notes') to this:
     
    var checkbox1 = document.getElementById('EditRecordhandover') var checkbox2 = document.getElementById('EditRecordapproved') var textfield1= document.getElementById('EditRecordprocess_notes') Also note that when using the Details DataPage, instead of Insert keyword, we should use Edit. Change also the naming of your fields accordingly.
    var checkbox1 = document.getElementById('EditRecordleft_egypt') var checkbox2 = document.getElementById('EditRecordfollow_checkbox') var textfield1= document.getElementById('EditRecordwhen_to_follow')  
×
×
  • Create New...