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.
2 parents 7009a1a + 6cc4286 commit ab129c0Copy full SHA for ab129c0
src/Html/Column.php
@@ -101,6 +101,20 @@ public function orderable(bool $flag = true)
101
102
return $this;
103
}
104
+
105
+ /**
106
+ * Set column responsive priority.
107
+ *
108
+ * @param int|string $value
109
+ * @return $this
110
+ * @see https://datatables.net/reference/option/columns.responsivePriority
111
+ */
112
+ public function responsivePriority($value)
113
+ {
114
+ $this->attributes['responsivePriority'] = $value;
115
116
+ return $this;
117
+ }
118
119
/**
120
* Set column title.
0 commit comments