-
Notifications
You must be signed in to change notification settings - Fork 1
Can this make a cell span columns or rows? #14
Comments
Ok, hang on.. I just noticed the In order words, the closest I can get using
|
currently the column names cannot be disabled, if this is a bug, I can start this issue |
I wouldn't call that a bug, no.. But looking through the options presented by WebStorm's intellisense on the Unfortunately though, having the ability to configure column and/or row spanning is a necessity for my current project, so that is still the most important part of my query here. Here's a table example that can't be built without the use of
FWIW: the reason I'm looking to use a table "builder" system of sorts (as opposed to simply using static markup) is because the app in which this is used needs to cater for a variable number of "devices" in the above example... So as more of them are included in the source data, the table will grow horizontally with an additional column for each one. |
I'm working through a number of different Angular "table builder" modules at the moment, found this one just now and it was by far the easiest to get going with straight-out-the-box. The others that I've looked at so far have simply been way too "over the top" with functionality that my current project will literally never use... However, there are a few small things I'm battling to work out here.
Not sure if I'm just missing something from the examples on the linked stackblitz.io page, but perhaps someone could tell me if
ng-table-builder
can generate tables with the following example layout:This involves two things that I haven't managed to work out so far:
colspan
attribute to make one header cover all columns (I would also like to userowspan
, but that's not required)Regarding point 2, if this module has no way to cater for this specifically, I can quite easily restructure my source data on the fly to have 2 entries, joining them in code before pushing them to the table... So that's no big issue, but the column (and hopefully row) spanning is a necessity for me.
Any ideas?
The text was updated successfully, but these errors were encountered: