* add comment.

This commit is contained in:
chencongzhi520@gmail.com
2013-06-27 07:06:54 +00:00
parent ab8dfc3eeb
commit 758cf28c28

View File

@@ -198,6 +198,14 @@ function ajaxGetSearchForm()
}
}
/**
* Show detail.
*
* @param string $objectType
* @param int $objectID
* @access public
* @return void
*/
function showDetail(objectType, objectID)
{
$.get(createLink(objectType, 'ajaxGetDetail', "objectID=" + objectID), function(data){$('#item' + objectID).html(data)});