tags:

views:

74

answers:

0

So after watching the ResizableControlExtender video tutorial (http://www.asp.net/learn/ajax-videos/video-155.aspx) I want o copy the functionality in a project of my own, but with some changes.

At one stage it describes how you would use the control to resize a panel which contains some text. On resize, some javascript would be executed and it would dynamically adjust the font size of the panel.

Now I want to go a couple of steps further. I have a master page which is used for my content pages. I want to use the ResizableControlExtender to give that functionality to all my content pages which use that control. Most of them will contain tables in one form or another. Resizing the tables dynamically is easy, you just set the table width to 100%, and happiness. But how would I go about changing the font size? I know it will most likely not be a simple one-line solution.

I am not that experienced with the more complex aspects of javascript, so a bit more detail than usual might be necessary.

related questions