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