Edit Summary Text Dynamically on Add-In Tile?

I have a custom Tile that I am trying change the Summary Text at the time its rendered.

The issue is changing its value dynamically after the tile has loaded. I can get it to work when GetValue returns a hard coded value. It doesn't when its returned thru an AJAX call.

Any thoughts?

794bea35fe8a9d82455317dec2fa7c0a-huge-im
b4e72a9db46502d98261de73c4046136-huge-im
2453ad73437d74c9c78867fdd29c63d2-huge-im

Comments

  • Michael Tims
    Michael Tims Blackbaud Employee
    Sixth Anniversary Kudos 2 Name Dropper Participant

    Hi @Bob Rowe - the web request is executing asynchronously and therefore returns a value to the summaryText value after the args.ready call is already executed. You may need to move the args.ready call to occur within the ajax success callback. Let me know if that helps.

  • @Michael Tims Thanks Michael

    That was the trick! Its working as expected now!

    5a2ab247001d11bd6edcc16058089c94-huge-im