We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13fe45c commit 9e80e50Copy full SHA for 9e80e50
Ajax/semantic/html/collections/HtmlGrid.php
@@ -299,6 +299,13 @@ public function setValues($values, $force=true) {
299
$this->content[$i]->setValues($values[$i], $this->_createCols === false);
300
}
301
302
+
303
+ public function setColWidth($numCol,$width){
304
+ foreach ($this->content as $row){
305
+ $row->getCol($numCol)->setWidth($width);
306
+ }
307
+ return $this;
308
309
310
/**
311
* stretch the row contents to take up the entire column height
0 commit comments