3

I have to resize the HTML table rows/column Width and height. Now I am Using separate plugin to adjust column width Plugin link

And Separate jquery function to adjust rowHeight.

$("#MatrixTabletr").resizable();$("#MatrixTable td").resizable();


its working fine in firefox but not yet in chrome.

Note:
Here am saving width of column/height of row and retrieving again by while display the table by C#. please look my code jsFiddle

(I am fixing height 50px as sample I need to reduce size in chrome but firefox working good)
please help me

1
  • your fiddle works well for me in chrome, even after I removed line height:50px; Commented Jul 11, 2014 at 6:15

1 Answer 1

2

If you would like to use the jQueryUI to achieve the resizable effect, you have no need to use that colResizable plugin. jQueryUI resizable can do horizontal & vertical resize both.

I comment the code invokes colResizable plugin, It works fine on chrome now.

$("#MatrixTable").colResizable({
    onResize: onSampleResized
});

http://jsfiddle.net/mygoare/44fKg/13/

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.