Code change + typo
This commit is contained in:
parent
852cddcc11
commit
0af5f4c568
3 changed files with 17 additions and 11 deletions
|
|
@ -402,7 +402,8 @@ class ICard extends HtmlInput
|
|||
$this->callback=$p_name;
|
||||
}
|
||||
|
||||
/**\brief set the javascript callback function
|
||||
/**
|
||||
* \brief set the javascript callback function
|
||||
* by default it is update_value called AFTER an item has been selected
|
||||
* \param $p_name callback function name
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -824,11 +824,22 @@ function check()
|
|||
$ret=$this->table->seek($p_order, $p_array);
|
||||
return $ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief echo the HTML to have a button add
|
||||
* @return void
|
||||
*/
|
||||
protected function create_button_add() {
|
||||
echo HtmlInput::button_action(" "._("Ajout"),
|
||||
sprintf("%s.input('-1','%s')",
|
||||
$this->object_name,
|
||||
$this->object_name), "xx", "smallbutton", BUTTONADD);
|
||||
}
|
||||
/**
|
||||
* @brief display the data of the table
|
||||
* @param $p_order is the cond or order of the rows,
|
||||
* if empty the primary key will be used
|
||||
* @param $p_array array of the bind variables
|
||||
* @param $p_array array of the bind variables of the SQL ($p_order)
|
||||
* @note the function create_js_script MUST be called before this function
|
||||
*/
|
||||
function display_table($p_order="", $p_array=NULL)
|
||||
|
|
@ -837,10 +848,7 @@ function check()
|
|||
$nb=Database::num_row($ret);
|
||||
if ($this->can_append_row()==TRUE && $this->button_add_top == true)
|
||||
{
|
||||
echo HtmlInput::button_action(" "._("Ajout"),
|
||||
sprintf("%s.input('-1','%s')",
|
||||
$this->object_name,
|
||||
$this->object_name), "xx", "smallbutton", BUTTONADD);
|
||||
echo $this->create_button_add();
|
||||
}
|
||||
$nb_order=count($this->a_order);
|
||||
$virg=""; $result="";
|
||||
|
|
@ -880,10 +888,7 @@ function check()
|
|||
echo "</table>";
|
||||
if ($this->can_append_row()==TRUE)
|
||||
{
|
||||
echo HtmlInput::button_action(" "._("Ajout"),
|
||||
sprintf("%s.input('-1','%s')",
|
||||
$this->object_name,
|
||||
$this->object_name), "xx", "smallbutton", BUTTONADD);
|
||||
echo $this->create_button_add();
|
||||
}
|
||||
printf('<script> alternate_row_color("tb%s");</script>',
|
||||
$this->object_name);
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ if ( $accvis == 1 ) :
|
|||
<?php endfor; ?>
|
||||
</table>
|
||||
<span style="font-style: italic;">
|
||||
<?php echo _("Nombre d'enregistrements trouvé:$total_card"); ?>
|
||||
<?php printf ( _("Nombre d'enregistrements trouvés:%s"),$total_card); ?>
|
||||
</span>
|
||||
<br>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue