Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Choose Column causing Overflow #505

Open
francogiacobbi opened this issue Apr 5, 2022 · 1 comment
Open

Choose Column causing Overflow #505

francogiacobbi opened this issue Apr 5, 2022 · 1 comment

Comments

@francogiacobbi
Copy link

Hello!

I am having an issue with chooseColumn. I can't see the column description and others elements.
I've applied also Bootstrap4 theme but style isn't applied.

This what i can see on chooseColumn

immagine

I'm using

jquery-ui.min.css (jQuery UI - v1.13.1 - 2022-02-06)
ui.jqgrid.min.css (jqGrid 4.15.5)
ui.multiselect.min.css (plugin from jqGrid 4.15.5)

jquery 3.5.1
jquery-ui.js (jQuery UI - v1.13.1 - 2022-02-06))
ui.multiselect.js (plugin from jqGrid 4.15.5)
grid.locale-it.js (jqGrid 4.15.5)

This is Firefox inspection:
<ul class="selected connected-list ui-sortable" style="height: 147px;"> <li class="ui-helper-hidden-accessible ui-sortable-handle"></li> <li class="ui-state-default ui-element ui-sortable-handle" title="DIP_ID" style=""> <span class="ui-icon ui-icon-arrowthick-2-n-s">COLUMN1<a href="#" class="action"> <span class="ui-corner-all ui-icon ui-icon-minus"></span></a></span> </li>

<span class="ui-icon ui-icon-arrowthick-2-n-s">
This code piece reports "element causes overflows of another element".
like also
<a href="#" class="action"> do

How can adjust this problem ?

@rany2
Copy link

rany2 commented Mar 4, 2023

Hi, I fixed this issue in my fork. You could fix it yourself in free-jqgrid by adjusting this line

var node = $('<li class="ui-state-default ui-element" title="'+(option.attr("title") || option.text())+'"><span class="ui-icon"/>'+option.text()+'<a href="#" class="action"><span class="ui-corner-all ui-icon"/></a></li>').hide();
to:

		var node = $('<li class="ui-state-default ui-element" title="'+(option.attr("title") || option.text())+'"><span class="ui-icon"></span>'+option.text()+'<a href="#" class="action"><span class="ui-corner-all ui-icon"></span></a></li>').hide();

If you're interested in the fork you could check out info in #511 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants