Skip to main content

All Questions

0 votes
1 answer
451 views

how to use jquery resizable in table headers and how to extend parent div when I resize the table header?

here is a sample code, Please extend the table header using jquery resizable() without changing the div height and width. Thanks in advance. <!DOCTYPE html><html><head><title>...
Linto's user avatar
  • 31
1 vote
1 answer
140 views

Why doesn't table resize work here? jsfiddle url inserted

How can I make my table resizable like a textarea element and not individual rows/columns? I seem to be fundamentally missing something simple. https://jsfiddle.net/o0Ldf0us/ <table id="example"&...
user avatar
0 votes
2 answers
6k views

How to make a table within a resizable div scrollable, properly behave

I have a resizable and movable div using JQuery UI. I want a table inside it that scrolls vertically. Trying to set the table height to 100% basically does nothing, and absolute positioning with top ...
user avatar
1 vote
1 answer
138 views

I need that a resizable (jQuery ui) div in a TH don't go smaller that TD width or make TD overflow:hidden

I have this headers on a table with a div inside: <TH><DIV class="resize">Name of Column</DIV></TH> <TH><DIV class="resize">Name of Column2</DIV></TH> ...
maufonfa's user avatar
3 votes
2 answers
77 views

Unsuccessful in applying the jQuery.resizable API to an HTML table

I am wanting to apply the jQuery resizable API to my HTML table, but it does not seem to be working as it should, there is no handle appearing at the top of my table headers to resize the columns. ...
John Smith's user avatar
  • 1,687
1 vote
2 answers
8k views

How to resize columns of two table on mouse drag event for only one of the columns?

I have two tables with id sample1 & sample2. sample1 contains <th class="header"> and sample2 contains <td class="desc">. All I want to do is when I resize <th> in sample1 it ...
surajR's user avatar
  • 573
1 vote
2 answers
6k views

jQuery UI Resizable in TH

I'm trying to make a table with the th's of the header resizable. Here you can see an example where I first try de resize with a div and then with a table (it works great). Then I try the resize with ...
Diego's user avatar
  • 16.7k