EricR
July 21, 2015, 9:30am
1
Hello,
I have created mockup of a resource allocation tool with webix and I have some issues with datatable.
Example: Code
Version tested: 2.4.7
Issues:
Multi select: the width list is limited to the datatable column (and in this case the data is not visible) . Example: Click on Team filter.
Issue on header display when I click on 15.35 and after 15.32 in example.
You see a glitch on week on header 15.35
Do you have solution to resolve the issues ?
Regards.
maksim
July 21, 2015, 10:50am
2
As for multi-select filter, it is possible to change the current behavior through API.
example1.getFilter("team").getPopup().config.fitMaster = false;
Currently, there is no way to define fitMaster directly in filter’s config. It will be fixed in one of the next update.
As for the header related issue. I can confirm the problem. It is already fixed in dev. code. The fixed build will be available in next two days.
EricR
July 21, 2015, 10:58am
3
Thanks for the feedback and really fast response.
EricR
July 24, 2015, 2:04pm
4
The issue is fixed with 2.5.
Thanks
EricR
July 24, 2015, 2:15pm
5
But in this release we have a new issue when we select multiple cells. During the operation the display of selection is wrong (but when we release the mouse button the selection is ok).
With my code above, you can left-click and select one cell (e.g. development data) and select 2 or more element cells in same line.
I have this issue with Chrome 43 and IE 11
maksim
July 24, 2015, 2:43pm
6
Yep, the new blockselection mode works not so well for splits in datatable. Change
blockselect: true,
to the
blockselect: "box",
to return the previous selection mode, which will work correctly.
maksim
July 24, 2015, 2:44pm
7
blockselect: "select",
this one will also work correctly
is the issue with popup width fixed?
maksim
September 16, 2016, 11:03am
10
Yep, you can use inputConfig property in filter’s config to configure the input and the suggest of the filter.
http://webix.com/snippet/5720b7be
thank you @maksim . but in the sample there should be “width” instead of “suggestWidth”
is there a way to “autowidth” datatable’s headerMenu? long captions do not fit into.
Helga
September 19, 2016, 10:57am
13
Sure, you can use the autowidth:true
setting: http://webix.com/snippet/a6d9f9e6