I would like to show a status in field but the result data is from an external link which means another sharepoint list.
I’m using something similar below but not sure if this is the best way to do it.
<td>
<iframe src="/sites/showCommsStatus.aspx?id={@ID}&user={$loginUser}" width="20px" height="25px"></iframe>
</td>
As you can see i’m passing the ID and the login users name.
How can i do this smarter maybe using jquery and a div?
Thanks in Advance
You can make Ajax call using
.ajax()and than load the page data in your div using.html()method of the javascriptyou can read about ajax call over here : Jquery Ajax Calling functions