-
Notifications
You must be signed in to change notification settings - Fork 231
Bootstrap 4 compatibility #77
Comments
So, it seems that I have to revert this PR? |
I don't think that one is related. I fixed opening the settings drop down on this line:
(adding data-toggle="dropdown" )
But then this one is broken, since it is nested:
|
well... so it does not support BS4 actually... |
No, in fact it doesn't. I'm not sure it's quite possible to support both BS3 and BS4 at the same time. |
ok i will correct it tomorrow |
@kenberkeley Can you guys add support to BS4 ASAP, I know you can't support both BS3 and BS4 but you can make a branch for BS3 and the master for the latest bootstrap version. Thanks |
I not longer work for OneWay so you guys might have to on your own... |
Thanks for quick answer @kenberkeley. Who is the manager of the repository currently that can help us add BS4 support? or this repo is abandoned? |
I was the leader when in OneWay, now I left so nobody could handle... I am confident of this repo with BS3 so I will keep maintain it. In terms of BS4 compability, I hope you guys can help |
@kenberkeley OK I will try to do a pull request this weekend. |
I managed to solve this by the following tweak, but // Added when table is rendered with little timeout
$('div[name=HeaderSettings]').children('button[class*=dropdown-toggle]')[0].setAttribute('data-toggle','dropdown'); |
After struggling with the
HeaderSettings
component (the settings drop down was not opening), I realized this component depends on Bootstrap 3.With Bootstrap 4, it is not opening the drop down without
data-toggle="dropdown"
on the button, and then with it, it's not opening the nested drop-down (for Save), it just closes the drop down completely. I'm quite sure that Bootstrap 4 does not support nested drop-downs.The text was updated successfully, but these errors were encountered: