noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 06/14: Select has already undocumented rowsiz


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 06/14: Select has already undocumented rowsize attribute , changes reversed
Date: Wed, 28 Oct 2015 09:56:57 +0000

sparkyx pushed a commit to branch master
in repository noalyss.

commit 6f5891da00f83171895eac0534c96250e5176e62
Author: Dany De Bontridder <address@hidden>
Date:   Sun Oct 25 19:20:37 2015 +0100

    Select has already undocumented rowsize attribute , changes reversed
---
 include/ajax/ajax_add_menu.php |    2 +-
 include/lib/class_iselect.php  |    5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/include/ajax/ajax_add_menu.php b/include/ajax/ajax_add_menu.php
index b8ad21c..b39c602 100644
--- a/include/ajax/ajax_add_menu.php
+++ b/include/ajax/ajax_add_menu.php
@@ -127,7 +127,7 @@ select me_code,me_code||' '||coalesce(me_menu,'')||' 
'||coalesce(me_description,
     $p_order=new INum("p_order", "10");
 
     $me_code=new ISelect('me_code');
-    $me_code->size=15;
+    $me_code->rowsize=15;
     $me_code->value=$ame_code;
 
 
diff --git a/include/lib/class_iselect.php b/include/lib/class_iselect.php
index 2f8b64e..2119bf1 100644
--- a/include/lib/class_iselect.php
+++ b/include/lib/class_iselect.php
@@ -22,7 +22,7 @@
 /*!\file
  * \brief Html Input , create a tag <SELECT> ... </SELECT> 
  * if readonly == true then display the label corresponding to the selected 
value
- * You can use also $this->size  to specify the number of lines to display
+ * You can use also $this->rowsize  to specify the number of lines to display
  * 
  * @see Database::make_array
  */
@@ -40,11 +40,10 @@ class ISelect extends HtmlInput
 
         $disabled=($this->disabled==true)?"disabled":"";
         $rowsize = (isset ($this->rowsize)) ? ' size = 
"'.$this->rowsize.'"':"";
-        $size=(isset($this->size))?'size="'.$this->size.'"':"";
         
         $r="";
 
-        $a="<SELECT  {$size} id=\"$this->id\" NAME=\"$this->name\" $style 
$this->javascript $disabled $rowsize>";
+        $a="<SELECT   id=\"$this->id\" NAME=\"$this->name\" $style 
$this->javascript $disabled $rowsize>";
         if (empty($this->value)) return '';
         for ( $i=0;$i<sizeof($this->value);$i++)
         {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]