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}&amp;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

link|improve this question

49% accept rate
Maybe use JQuery.Ajax call to get the data and fill in the div but that'll still require you to send the id and name. – sjums Jan 16 at 7:32
@naijacoder- you got the answer you want .............. – Pranay Rana Jan 16 at 14:11
feedback

1 Answer

up vote 1 down vote accepted

You can make Ajax call using .ajax() and than load the page data in your div using .html() method of the javascript

you can read about ajax call over here : Jquery Ajax Calling functions

link|improve this answer
Pranay can you update the link with the download.Can't download the code.Update the rar file Chrs – naijacoder Jan 17 at 2:24
@naijacoder - you can download code from here codeproject.com/KB/ajax/Jquery_Ajax_Calling.aspx – Pranay Rana Jan 17 at 7:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.