当前位置: 首页>>代码示例>>PHP>>正文


PHP TinyAjax::showLoading方法代码示例

本文整理汇总了PHP中TinyAjax::showLoading方法的典型用法代码示例。如果您正苦于以下问题:PHP TinyAjax::showLoading方法的具体用法?PHP TinyAjax::showLoading怎么用?PHP TinyAjax::showLoading使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TinyAjax的用法示例。


在下文中一共展示了TinyAjax::showLoading方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: setfocus

    $query = "SELECT grupo, agrupacion_contable FROM Grupo WHERE id_grupo = {$id_grupo}";
    $result = mysql_query($query);
    $row = mysql_fetch_array($result);
    $grupo = $row[0];
    $agrupacion_contable = $row[1];
    $grupo_input = "<input type='text' value='{$grupo}' size='50' name='grupo' id='grupo' class='obligatorio'> *";
    $tab = new TinyAjaxBehavior();
    //		$tab->add( TabInnerHtml::getBehavior("g_cont", $grupo_input));
    $tab->add(TabEval::getBehavior("cambiarComboAgrupacion({$agrupacion_contable})"));
    $tab->add(TabEval::getBehavior("cambiarFieldGrupo('{$grupo}')"));
    //		$tab->add( TabAlert::getBehavior("Hola"));
    //		$tab->add( TabSetValue::getBehaviour("grupo", $grupo));
    return $tab->getString();
}
$ajax = new TinyAjax();
$ajax->showLoading();
$ajax->exportFunction("updateGroupFields", array("id_grupo"));
$ajax->process();
?>

<html>
<head>
  <title>North Sails - Sistema de Control de Stock</title>
  <link rel="stylesheet" type="text/css" href="north.css" />

<script type="text/javascript">

var old_agrup_contable;

function setfocus()
{ 
开发者ID:eznibe,项目名称:north-stock,代码行数:31,代码来源:grupo_modificacion_ajax.php


注:本文中的TinyAjax::showLoading方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。