///
/// 直播评课表 [Pub_ApplicationPointTable] Ajax提交类
///
var ApplicationPointTableAjax = new Object();
///
/// 直播评课表 [Pub_ApplicationPointTable] 获取记录信息
///
ApplicationPointTableAjax.GetInfo = function (key, send, fun, errorFun, target, html) {
return Global.Ajax(
{
ajaxCache: false,
ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Pub.ApplicationPointTableAjax.Get",
ajaxData: "key=" + encodeURIComponent(key),
ajaxAsync: true,
ajaxFunSuccess: fun,
ajaxFunError:errorFun
}, send, target, html);
};
///
/// 直播评课表 [Pub_ApplicationPointTable] 添加记录
///
ApplicationPointTableAjax.Insert = function (form, send, fun, errorFun, target, html) {
return Global.Ajax(
{
ajaxCache: false,
ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Pub.ApplicationPointTableAjax.Insert",
ajaxData: Global.GetFormValue(form),
ajaxAsync: true,
ajaxFunSuccess: fun,
ajaxFunError:errorFun
}, send, target, html);
};
///
/// 直播评课表 [Pub_ApplicationPointTable] 修改记录
///
ApplicationPointTableAjax.Update = function (form, send, fun, errorFun, target, html) {
return Global.Ajax(
{
ajaxCache: false,
ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Pub.ApplicationPointTableAjax.Update",
ajaxData: Global.GetFormValue(form),
ajaxAsync: true,
ajaxFunSuccess: fun,
ajaxFunError:errorFun
}, send, target, html);
};
///
/// 直播评课表 [Pub_ApplicationPointTable] 删除记录
///
ApplicationPointTableAjax.Delete = function(key, send, fun, errorFun, target, html) {
return Global.Ajax(
{
ajaxCache: false,
ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Pub.ApplicationPointTableAjax.Delete",
ajaxData: "key=" + encodeURIComponent(key),
ajaxAsync: true,
ajaxFunSuccess: fun,
ajaxFunError:errorFun
}, send, target, html);
};
///
/// 直播评课表 [Pub_ApplicationPointTable] 批量删除记录
///
ApplicationPointTableAjax.BatchDelete = function (key, send, fun, errorFun, target, html) {
return Global.Ajax(
{
ajaxCache: false,
ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Pub.ApplicationPointTableAjax.BatchDelete",
ajaxData: key,
ajaxAsync: true,
ajaxFunSuccess: fun,
ajaxFunError:errorFun
}, send, target, html);
};
/*******************************************
* 以下为自定义方法
*******************************************/