For a sharepoint List, I am developing a powerapp form. In it, I am using media images to show the status of a business process. First time i load the app after publishing, i can see the icons, but i am not able to see them anymore after that. I tried disabling the improve app rendering feature and re enabling it but didnt solve the issue.
//Formula for the OnSelect Property of the Image
If(
SharePointIntegration.Selected.Flow_GenerateRFIStatus.Value = "Success",
'verify-circular-black-button-symbol',
If(
SharePointIntegration.Selected.Flow_GenerateRFIStatus.Value = "Failed",
'round-error-symbol',
If(
SharePointIntegration.Selected.Flow_GenerateRFIStatus.Value = "Not Run",
'cross-black-circular-button'
)
)
)
DIV Code when images load
<div class="appmagic-image-pseudo-button" role="img" data-bind="{
visible: properties.TabIndex() < 0,
event: { click: onClickHandler },
attr: {
title: properties.Tooltip() || null,
'aria-label': properties.AccessibleLabel() || null,
'aria-hidden': !properties.AccessibleLabel(),
}
}" aria-hidden="true">
</div>
DIV Code when images do not load
<div class="appmagic-image-pseudo-button" role="img" data-bind="{
visible: properties.TabIndex() < 0,
event: { click: onClickHandler },
attr: {
title: properties.Tooltip() || null,
'aria-label': properties.AccessibleLabel() || null,
'aria-hidden': !properties.AccessibleLabel(),
}
}" aria-hidden="true">
</div>Here are teh screenshots
Warnings with Icons not appearing
Errors with Icons not appearing
Workflow with icons not appearing
Warning with Icons appearing
Error with Icons appearing
App with icons appearing under statuses