• Niladri Chakraborty 12
  • NEWBIE
  • 0 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hi I'm new to Eainstein analytics. I would like to develop a lightning component which will take image url & show the image. So I created this component
<aura:component implements="flexipage:availableForAllPageTypes" access="global" controller="MyController" >
 <lightning:card title="Partner Information">
     <Div>
         <p><lightning:input aura:name="image" label ="Enter image url"  type="text"/></p>
	     <br></br> 
         <img url="{!v.image}" />
	
		
    
     </Div>
</lightning:card>
     
</aura:component>
My purpose is to display the image using the URL & predict the image using the url
But while running the component, I'm getting error message 
This page has an error. You might just need to refresh it.
Access Check Failed! AttributeSet.get(): attribute 'image' of component 'markup://c:EinsteinPrediction {3:0}' is not visible to 'markup://c:EinsteinPrediction {3:0}'.
Failing descriptor: {c:EinsteinPrediction}

Can you help me to resolve this issue?
Hi I'm new to Eainstein analytics. I would like to develop a lightning component which will take image url & show the image. So I created this component
<aura:component implements="flexipage:availableForAllPageTypes" access="global" controller="MyController" >
 <lightning:card title="Partner Information">
     <Div>
         <p><lightning:input aura:name="image" label ="Enter image url"  type="text"/></p>
	     <br></br> 
         <img url="{!v.image}" />
	
		
    
     </Div>
</lightning:card>
     
</aura:component>
My purpose is to display the image using the URL & predict the image using the url
But while running the component, I'm getting error message 
This page has an error. You might just need to refresh it.
Access Check Failed! AttributeSet.get(): attribute 'image' of component 'markup://c:EinsteinPrediction {3:0}' is not visible to 'markup://c:EinsteinPrediction {3:0}'.
Failing descriptor: {c:EinsteinPrediction}

Can you help me to resolve this issue?
Hi I'm new to Eainstein analytics. I would like to develop a lightning component which will take image url & show the image. So I created this component
<aura:component implements="flexipage:availableForAllPageTypes" access="global" controller="MyController" >
 <lightning:card title="Partner Information">
     <Div>
         <p><lightning:input aura:name="image" label ="Enter image url"  type="text"/></p>
	     <br></br> 
         <img url="{!v.image}" />
	
		
    
     </Div>
</lightning:card>
     
</aura:component>
My purpose is to display the image using the URL & predict the image using the url
But while running the component, I'm getting error message 
This page has an error. You might just need to refresh it.
Access Check Failed! AttributeSet.get(): attribute 'image' of component 'markup://c:EinsteinPrediction {3:0}' is not visible to 'markup://c:EinsteinPrediction {3:0}'.
Failing descriptor: {c:EinsteinPrediction}

Can you help me to resolve this issue?