﻿$(document).ready(function ()
{
    GetRecommendedItems();
});


function GetRecommendedItems()
{
    $.ajax({
        type: "POST",
        url: "ShowCart.aspx/GetRecommendedItems",
        data: "{}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (msg)
        {
            $("#ctl00_dvRecomendedItems").html(msg);
            init_edit();
        }
    });

}

function MoveItemUp(ItemName)
{
    $.ajax({
        type: "POST",
        url: "ShowCart.aspx/MoveItemUp",
        data: "{ItemName:'" + ItemName + "'}",
        contentType: "application/json; charset=utf-8",
        dataType: "json"
    });
    GetRecommendedItems();
}

function MoveItemDown(ItemName)
{
    $.ajax({
        type: "POST",
        url: "ShowCart.aspx/MoveItemDown",
        data: "{ItemName:'" + ItemName + "'}",
        contentType: "application/json; charset=utf-8",
        dataType: "json"
    });
    GetRecommendedItems();
}

function DeleteItem(ItemName)
{

    $.ajax({
        type: "POST",
        url: "ShowCart.aspx/DeleteItem",
        data: "{ItemName:'" + ItemName + "'}",
        contentType: "application/json; charset=utf-8",
        dataType: "json"
    });
    GetRecommendedItems();
}
