Questions tagged [panel]

A panel is a simple container that allows other elements to be placed into it, especially visual user interface elements.

A panel is a simple container that allows other elements to be placed into it, especially visual user interface elements. Panels can generally aid in developing more complex user interfaces.

4086 questions
1
vote
2 answers

why doesnt my panel show all my buttons in my c# application?

my panel in my windows form application doesn't include all the buttons i asked it to. It shows only 1 button, Here is the code private void AddAlphaButtons() { char alphaStart = Char.Parse("A"); char alphaEnd =…
Fortubeks
  • 33
  • 7
1
vote
2 answers

Visual Basic PictureBox Panel Flicker

I am making a simple game that (for the main part) consists of a Panel with a grid of 32 PictureBoxes inside, each with a BackgroundImage. You click on a "tile" and it flips revealing a picture. My problem is that when the Form Loads, I can see it…
Jayce
  • 539
  • 6
  • 21
1
vote
0 answers

Error in image panel class of java : error:image panel cannot be resolved to a type

How to use image panel class, here it is showing error: image panel cannot be resolved to a type! How to create an image panel class object? public void start() { ImagePanel im=new ImagePanel("C:/om1.jpg");//ERROR:image panel cannot be …
BugCoder
  • 11
  • 2
1
vote
1 answer

jQuery mb-extruder with bootstrap

I wanted to use slider panel to show reminders on the right of my div / page. For that I used mb-extruder. It was working fine until I included the bootstrap library. It shows the panel button with some gap. I checked all the properties using…
Krishna Sarma
  • 1,852
  • 2
  • 29
  • 52
1
vote
1 answer

gwt panel flow panel

i like to design entire html with GWT. but when i press ctrl and + then entire html must be zoomed from center not from upper left corner. then what type of panel should i use? flow panel , stack panel i dont know.
msaif
  • 11
  • 1
1
vote
3 answers

Remove text "Joomla! 3.3.6" from admin panel

Can someone give advice how to remove Joomla! 3.3.6 from admin panel? I have found all the rest after "-" including copyright and website title but no luck with text Joomla! 3.3.6. Any ideas where to search? Thank you!
10101
  • 2,232
  • 3
  • 26
  • 66
1
vote
1 answer

How can I validate only the controls inside a panel?

I have a form with two panels that each have a [Save] button. How can I validate all of the controls inside each panel separately? I was hoping that the Panel class would have a Validate() method but it doesn't. It's also not a ContainerControl so…
SofaKng
  • 1,063
  • 1
  • 11
  • 32
1
vote
1 answer

Python 3.4 - How to transform a Pandas Data Panel (not frame) to a mySQL database?

I am trying to organize some financial data in a 'multidimensional' SQL database so that I can, at a later stage, take slices as needed across time or asset (or attribute such as 'close_price'). Pandas Panel.to_sql seemed like a nice way to do this…
Azmy Rajab
  • 205
  • 1
  • 7
1
vote
1 answer

Listener for checking the state of SlidingUpPanel

I want to change the visblity of an item when AndroidSlidingUpPanel is expanded to full screen.Is there any listener which detects whether sliding panel is full screen?I tried using this but didn't worked- slidingPaneLayout.setOnDragListener(new…
Android Developer
  • 9,157
  • 18
  • 82
  • 139
1
vote
1 answer

c# dynamically created label size not wide enough

When dynamically creating a label a part of it's text is missing. This is because the size of the label is not wide enough, it cuts of a part of the the actual string. How do i make that simply stop? I dont want to nor do i remember setting a size…
Rien
  • 398
  • 2
  • 12
  • 37
1
vote
1 answer

Stripplot showing mean+sd [r]

Hi I want to plot a stripplot showing the mean+sd. I cannot show a boxplot because I have less than 5 values, so I want to use mean and sd. My problem is that I cannot calculate the mean and sd INSIDE the group, rather I get two means that are…
Santi
  • 368
  • 2
  • 15
1
vote
3 answers

Subset panel data by group

I would like to subset an unbalanced panel data set by group. For each group, I would like to keep the two observations in the first and the last years. How do I best do this in R? For example: dt <- data.frame(name= rep(c("A", "B", "C"),…
Gary
  • 11
  • 3
1
vote
3 answers

Jquery mobile 1.4.5 set panel height possible?

I am making a jqm project mobile only. I have two panels one set to push the other is overlay. One is in the left corner and the other is top right corner. My question is it possible to set the right panel to 100% width (which I've done) and set…
1
vote
1 answer

Custom Drop-down window/dialog in Cocoa

What are the alternatives of dialog windows in Cocoa? I need to create a custom dialog (modal) where the user will be able to enter some info and when he/she presses OK, my app will close this dialog and process input. So essentially, I need…
nik4emniy
  • 143
  • 1
  • 9
1
vote
1 answer

Bootstrap replace panel contents

I have a panel that I've created using Bootstrap. The panel contains a list of items with the item detail stored in a hidden div within the item itself. When the list item is clicked I would like to replace the entire panel content with the content…
user1513388
  • 7,165
  • 14
  • 69
  • 111