  function TScustomListConfigGetAjaxCall(url) {
    $.ajax({
       url: url,
       processData: false,
       dataType:  'json',
       success: TScustomListConfigShowItem,
       type: 'POST'
     });
  }

  function TScustomListConfigShowItem(data,responseMessage) {
    var container = document.createElement("div");
    container.innerHTML = data.sHTML;
    $container = $(container);

    var sContainer = '#TScustomListConfigListNr'+data.sScustomListConfigId

    var $oListParent = $(sContainer).parent();
    $oListParent.parent().append($container).hide().fadeIn("slow");
    $oListParent.fadeOut("slow").remove();
  }
