Questions tagged [autogrow]

When it relates to HTML, autogrow refers to the auto-expansion of HTML element's width or height.

Autogrow is nothing but increasing the dimensions of HTML elements using CSS or some other tools with respect to the contents inserted into it.

Most of the HTML elements have the property of expanding its width and height according to the content inserted into it if we do not set width or height through CSS.

Some elements like DIV,h,p etc have width:100% as default. So we may initially set width/height to some values for these kind of elements. And there may be some situations, we need to expand these containers according to dynamically inserted contents (may be text, image etc...) or sometimes we may want to expand elements beyond browser window also. In these situations some CSS tricks will help us to increase width and height of the container with respect to the content.

64 questions
1
vote
1 answer

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…
MRB
  • 33
  • 6
1
vote
1 answer

facebook autoresize issues using lightbox to view images fullscreen

Hi i have a facebook tab that displays offers. The offers use a ari image slider with a core joomla lightbox to view image fullscreen. I am using facebook autoresize function to get rid of the scrollbar and it works fine in firefox. I n all other…
Chris
  • 71
  • 1
  • 11
1
vote
1 answer

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…
FarrEver
  • 2,951
  • 5
  • 29
  • 24
0
votes
1 answer

css serial transition

Im browsing the net for more than a day now and still can't find a working solution to the followin problem. A div should grow from nothing to 100% from the bottom up then text should fade in then a timeout then text should fade-out then div should…
Ton
  • 316
  • 2
  • 12
0
votes
1 answer

jQuery autoGrow textarea completely browser compatible

I've been trying to find a good jquery auto grow plugin but every single one I find either doesn't work correctly in all browser, (up to date ones, not so worried about older browsers), or they don't allow me to put my own css height/width etc. to…
Dylan Cross
  • 5,918
  • 22
  • 77
  • 118
0
votes
0 answers

SQL Server datafile auto grow cancelled

I have a sql server 2017 Enterprise Edition installed on one of my servers. i am getting following error in my SQL Server logs. DESCRIPTION: Autogrow of file 'xxxx_data' in database 'xxxxxx' was cancelled by user or timed out after 29627…
angadai
  • 1
  • 1
  • 1
  • 2
0
votes
1 answer

Rust idiomatic way to have a bytes buffer that grows automatically on writes?

I am doing this at the moment, it works but feels very wrong: type Writer = Vec::; fn new_writer() -> Writer { Vec::::new() } pub trait BufferWriter { fn write_exact(&mut self, buf: &[u8]); } impl…
0
votes
1 answer

jquery autogrow not working

I cannot get this (http://plugins.jquery.com/project/autogrowtextarea) jquery plugin to work. below is my code. I have checked the autogrow.js file with several other sites. thanks. code: test7
user780483
  • 2,903
  • 10
  • 29
  • 32
0
votes
1 answer

CKEDITOR autogrow focus delay & styling

When converting an iOS web view with multiple stacked editors to autogrow plugin, I have the following issues: I had default margin, font, and font size styling in the editor which is now ignored - I've tried setting this styling everywhere I can…
BricoleurDev
  • 827
  • 9
  • 14
0
votes
2 answers

Android Scrolling Autogrow ListView

Hello I am trying to build a listview based on content from the web. I have had a look at : http://androidboss.com/load-listview-in-background-asynctask/ example but it uses a predefined array of months. How can I substitute the known array of…
Ian
  • 1
0
votes
0 answers

w3.css slideshow: How to add enlarge images in automatic slideshow

in my website (www.ricpedrotti.com) I use PrettyPhoto for the slideshow. I want to lighten and speed up by replacing it with css3 and at most a bit of java. I am able, separately, to make the slideshow and to enlarge the image with the hover, but I…
0
votes
1 answer

Vue - Ckeditor with Multiple extraPlugins

I'm using vue-ckeditor2 on my website, alongside Laravel. I'm trying to figure out how to use multiple extraplugins. Doing this works, but it ends up with only one extraPlugin - Embed: 'BulletedList', 'Image', …
0
votes
1 answer

Auto growing text area has invalid height after rendering in sapui5

I has xml view with auto growing sap.m.TextArea If I enter big enough text that takes more than 5 rows save it and reload page text…
absence
  • 308
  • 2
  • 16
0
votes
1 answer

Angular Material Textarea Auotgrow

I am using Angular Material textarea. I want to force the autogrow feature to only expand vertically and not horizontally. I tried to set the width, but that is not helping.