Questions tagged [sizing]

The operation of making appropriate scale according to size which can be dynamic.

Applicable in screen sizes (html) or load on server (load testing)

Please see other related tags: and .

234 questions
8
votes
6 answers

How can I make the modal popup scroll its contents with the page?

I've got a modal popup and when it loads contents that are taller than the browser height I am unable to scroll down to view the rest of the information. Instead the background can scroll but the popup won't. Instead I'd like to have the popup stay…
Middletone
  • 4,190
  • 12
  • 53
  • 74
7
votes
1 answer

bulma - adjusting typography sizing efficiently

I'm having a hard time figuring out the most efficient way to resize text for mobile. I know per the documentation, making the text size responsive to the screen is fairly straightforward, simply add the is-size-*-mobile class to an element to reset…
themantalope
  • 1,040
  • 11
  • 42
6
votes
2 answers

Java Swing getSize() returns inaccurate value?

To put this most simply, I am trying to use the width of a component to set the size of its parent container. However the width being returned for the component is off by about 4 pixels. More details: I have a dialog that has sub-panels spreading…
gnomed
  • 5,483
  • 2
  • 26
  • 28
5
votes
2 answers

Self sizing UICollectionViewCell in iOS14

Stack: Mac OS 10.15.6, Xcode Version 12.0 (12A7209) I have a self sizing collection cell. I override preferredLayoutAttributesFitting to get the self sizing feature. Everything works great PRIOR to iOS 14 ("1"). However, in iOS 14 (when…
MobileDev
  • 3,750
  • 4
  • 32
  • 35
5
votes
3 answers

Is there a data sizer tool available for SQL Server 2005?

I have to estimate the data size of database when populated with forecast values for each table. It should at least include size to be used for data and indexes. There used to be tool like this in SQL Server 2000 that produced an estimated size…
Philip Fourie
  • 111,587
  • 10
  • 63
  • 83
5
votes
1 answer

Drawing text using Swing

The main problem is that I want to draw a graph with a few labels. For drawing I use the following class: public class Canvas extends JPanel { // Lot of other methods @Override public void paintComponent(Graphics g) { …
András
  • 693
  • 5
  • 17
5
votes
1 answer

GWT DataGrid Sizing

I have a DataGrid which I want to grow vertically (height) as I add rows to it. The widget to add to the grid should be directly underneath the DataGrid. How do I do this? The answer to "GWT DataGrid automatic height" was too obscure (if it was…
Joel
  • 2,601
  • 4
  • 33
  • 44
4
votes
2 answers

Estimating IOPS requirements of a production SQL Server system

We're working on an application that's going to serve thousands of users daily (90% of them will be active during the working hours, using the system constantly during their workday). The main purpose of the system is to query multiple databases and…
Ivan Klaric
  • 413
  • 1
  • 4
  • 12
4
votes
1 answer

Android Layout - set spacing between Image Buttons

I have four buttons on top of a bar (background image) . What I'm trying to do is increase the spacing between the buttons (so they are spread out across the bar) and set the gravity to center_horozontal . I tries paddingLeft and paddingRight on…
Mike6679
  • 5,547
  • 19
  • 63
  • 108
4
votes
1 answer

Javafx Scene switching causing stage size increase

I am using Javafx (without using FXML), and I am passing the stage into the a controller to change the scene on the stage when a button is clicked. The scene changes correctly but the size of the stage and the scene increases.It increases in size by…
user2370794
  • 69
  • 1
  • 6
4
votes
1 answer

Dynamic Sizing of Circles Along a Spiral

I have created an logarithmic spiral in canvas, and plotted circles along it. Using your mouse scroll wheel you can zoom in and out of the spiral (which works) – but I am having problems updating the size of the circles to match the zoom level...…
RANGER
  • 1,643
  • 2
  • 17
  • 31
4
votes
1 answer

Sizing WPF controls to an exact percentage

In WPF, I want set a controls width to be, say, 97% of it's Parent controls ActualWidth property. How can I do this?
will
  • 3,975
  • 6
  • 33
  • 48
4
votes
1 answer

How to dynamically resize HTML element according to it's sibling size using CSS only?

I have container with a fixed height. Inside it there are two children: image and text of arbitrary length below it. I want the text to take the height it needs and the image to auto-adjust to the remaining space. Here is a start code I…
Paker
  • 2,522
  • 1
  • 16
  • 27
4
votes
1 answer

how to properly size an image view within a grid view on java side; android?

this is my code to put some image doodads in my GridView public View getView(int position, View convertView, ViewGroup parent) { ImageView v; if(convertView == null) { v = new ImageView(c); …
user1459976
  • 207
  • 6
  • 14
3
votes
1 answer

What would be a good way to measure the size of a JSP project?

Given an existing JSP project, I would like to get a feel for the complexity/size of the "view" portion of the project. Here's what I've done so far: Pulled the list of JSP's that have been compiled from the production server within the last x…
Dale
  • 5,520
  • 4
  • 43
  • 79
1
2
3
15 16