• Bryant Daniels 46
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 15
    Questions
  • 8
    Replies
Hello, I was trying to figure out what are some of the ways to detect and send changes to an outside system and inform them of the type of change and what changes via PLE. So, for example, we will be Updating a record that will, in term, fire a PLE to an outside system that is subscribed via CometD. Lets say we update the same records status and maybe a field. How would we send that information to the outside system notifying them of the type of change and changes. I looked into Change Data Capture, but it didn't seem to be working.
We are trying to configure a survey, and have it attached to either at the Case Level or Care Request Level in HC.  

Any thoughts?

Thanks,

Kevin
Hello I am using the Search input from the lightning input components.
<div onkeyup="{! c.handleKeyUp }"> <lightning:input aura:id="enter-search" name="enter-search" label="Search when user hits the 'enter' key" type="search" />

When I am implementing it this is fine, the problem i am having is how would i clear the contents or have a event fire when you click the "Clear Icon" that is built in the component. 
 
Has anyone created a question and answer bank sort of like creating a form. 
Was wondering if anyone is have a problem displaying the map from leaflet onto a lighting component record page. Following the Accounts near me trailhead. In the trailhead you can see the map in the App which is fine. But i am not able to show it in a lighting component.
Hello I was trying to figure out how i can set the value on a Apex Param 
here is my visualforce:

<button onclick="done();" class="btn btn right" type="button" id="doneButton" style="border: none; background: none; width: 100px; background-color: #dcdcdc; color: #ffffff;">Done</button>
                     <apex:actionFunction action="{!done}" name="SetHiddenValue" reRender="">
                        <apex:param name="brandCode" value="" assignto="{!iaFet.Brand_CD__c}" id="brandCode" />
                    </apex:actionFunction>
and my java script where i get the values that i need:
function getRequiredValues(){
                var brandCodeVal  = $('#brandDropdown option:selected').val();                            
                console.log(brandCodeVal);
               
            }
when i run this i get the value that i want in the console.log but i am trying to figure out how i can pass that value to the apex: param value so then i can assign it to something in my controller and save the record with the value.