autogrow

Problems using jeditable and autogrow

I work on a Webproject using jQuery and CakePHP. I use jeditable as an inplace edit plugin. For textareas I extend it using the autogrow plugin. Well, I have two problems with this: First, autogrow does only work on Firefox, not on IE, Safari, Opera and Chrome. Second, I need a callback event for jeditable, when its finished showing t...

How to grow a div by its content?

Hello, please, can someone explain to me, why the red div isn't expanding to the right? It stops where the screen ends. What do I have to do, to make it expand? One thing that works is to "display: table-cell" the red div but I was wondering if there's another way and why this happens...? <?xml version="1.0" encoding="UTF-8"?> <!DOCTYP...

How to make WPF WebBrowser grow horizontally and vertically?

In WPF, we are using a WebBrowser control to view HTML content. When we place the control on our window, it grows horizontally with the window as it grows/shrinks. However, we have not found a way to make the control grow vertically with the window. We are looking for some sample code that will allow the WebBrowser WPF control to grow...

jquery autogrow with yui-reset causes bad behavor in IE7

I am using YUI reset and jquery AutoGrow together on the same site. It works fine on firefox, but IE 7 behaves badly. The textarea grows way to big with even a small amount of text in it. Below is an example that demonstrates the problem. If I comment out the reset stylesheet, the autogrow behaves properly. I am hoping there is some si...

Jeditable not working with Jquery sortable

I was using Jeditable(with type autogrow) for editing text within a div which has similar siblings. Then I used Sortable for all the siblings and then jeditable wont cancel edit when click outside. Really in a pickle as I need sortable functionality and dont want to lose the editing. Edit: Also, once I click to edit a text, It will not...

Autogrow jQuery Plugin on dynamic content in Internet Explorer

Hi I am using plugin here http://plugins.jquery.com/project/autogrow and I got a problem in Internet Explorer and Chrome (Not Firefox) See code below: <script type="text/javascript"> $(document).ready(function() { $('#main').html('<textarea class=\"test\">aaaa</textarea>'); $('.test').autogrow(); </script> </head> <bod...

Autogrow ListView in Android

I did search around various questions related to the one I'm about to ask. I just want to ask it in clear and simple manner and hopefully get a clear and simple answer :) I have a List of several hundred items that I want to present to the user in ListView widget. Initially I want to start with say 50 items and as user scrolls near the ...

Android - ListView autogrow is not working as expected

This is continuation to the question I already asked a while back. I've been offered a solution which is not really working. Anyway - here's the problem/question I look at some posts from the past and it seems that if I add items to the ListView adapter it should update itself and user should be able to scroll to the newly appended item...

WPF - Text box that grows vertically to accomodate all text

The problem: I am not getting a textbox setting that will have a horizontally wordwrap and vertically auto grow functionality. I ...

SQL Server filegroup full during a large INSERT INTO statement

Consider a SQL script designed to copy rows from one table to another in a SQL 2000 database. The transfer involves 750,000 rows in a simple: INSERT INTO TableB([ColA],[ColB]....[ColG]) SELECT [ColA],[ColB]....[ColG] FROM TableA This is a long running query, perhaps in part because ColB is of type ntext. There are a handful of CONVER...

jQuery auto expanding textareas acting strange

I have tried various different jQuery autogrow/expand text area plugins, and they all work good and well on the demo page but for some reason whenever I implement them into my existing site, they act very strange, this is what is happening: It works great, if you're manually typing in text and hitting enter after every line, however, i...

Postgres: limiting table or database growth?

We had a database spin itself out of control and fill the SAN partition it was sharing with other services. In some other RDBMSen, there are ways to disable autogrowth. I've not found that approach (yet) with Postgres. Putting aside the problem database that caused this mess... What is your approach to preventing or limiting table/da...

How to grow a textbox to match size of input for data entry dynamically (ASP.NET)

Hi, I'd like to add a description field to an application that can be as long as several lines (or even paragraphs) or as short as a one-liner. Instead of taking up a lot of screen real estate or have scroll bars, it would be preferable to have the textbox grow based on its input. On IE6 adding Style="overflow-y:visible" accomplishes...

Using jWYSIWYG with autoGrow (textarea) in jQuery

I'm trying to use jWYSIWYG and autoGrow together so that the textarea in the jWYSIWYG editor expands as you type. Either jWYSIWYG works or autoGrow works, but not both together. I'm pretty new to jQuery, so would appreciate hearing what I'm doing wrong here. <script type="text/javascript"> $(function(){ $('#wysiwyg').autoGrow();...

Layout issue: autogrow label (SWT)

Hi, I'm using a GridLayout trying to make a label autogrow without hiding anything of its content. Here's a simple code to test: Everytime I press the button the label text grows larger, but only after I resize the window horizontally I get the correct layout. Is there any way to fix this without having to resize the window? I think I'v...