Questions tagged as 'panel'

2
answers

Panel open closed JS

I have the following panel: $(document).on('click', '.panel-heading', function(e){ var $this = $(this); if(!$this.hasClass('panel-collapsed')) { $this.parents('.panel').find('.panel-body').slideUp(); $this.addClass('pan...
asked by 30.04.2015 / 08:28
2
answers

How do I display a YouTube video on a Panel in ExtJS?

I would like to display a YouTube video on a Panel in ExtJS. It would be possible? Can someone give me a hint?     
asked by 11.12.2013 / 18:09
1
answer

Create panel with center at user click point

I need to create a Panel in a Form Getting more or less like this: When you click the mouse on Form create Panel taking the location of the click and create the Panel centralized. I did so: Panel...
asked by 25.11.2015 / 18:13
1
answer

Component placement using GridBagLayout

I'm doing a panel and I want to have the following layout: The width of the panel occupies the full width of the frame, and I want to have 4 buttons in the right corner of that panel. I created a panel as container , and within that panel...
asked by 26.04.2014 / 20:31
0
answers

How to make the form update correctly?

I have a screen in delphi that is updated constantly, is used together with a ratchet, every time a person puts the digital or type the password, this screen is updated with the information of this person. The update call comes from a TThread...
asked by 25.08.2015 / 14:08
2
answers

Change color of several Panel's dynamically

I have the following code in the button action: pnl1.BackColor = Color.DarkOrange pnl2.BackColor = Color.DarkOrange pnl3.BackColor = Color.DarkOrange pnl4.BackColor = Color.DarkOrange pnl5.BackColor = Color.DarkOrange pnl6.BackColor = Co...
asked by 10.03.2015 / 04:33
1
answer

Pass PHP parameters to JQuery Mobile Panel

Good morning everyone, I'm trying to do a function where a JQM Panel dynamically receives a page in PHP with some parameters. But it does not work, the panel opens in white. Here is the code I'm using: $(".botao").on("mouseup", functio...
asked by 31.12.2015 / 12:52
2
answers

Enable KeyPress in Panel C #?

I have an application and it works like this. I have a code to create TextBox dynamically when the maximum number of letters in TextBox1 is 2. Here is the code: private void VerificaTextBox(int contador) { for...
asked by 18.01.2015 / 20:54
1
answer

Aligning images inside Panel Bootstrap

I have the following Panel : <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">Header</h3> </div> <div class="panel-body">...
asked by 21.06.2017 / 03:37
1
answer

Clear Panel from a UserControl

I'm developing an application where multiple UserControls will be shown in a Panel from the code below: UserControl1 u1 = new UserControl1(); panel1.Controls.Add(u1); And I remove them from this code: panel1.Controls.Clear();...
asked by 22.06.2017 / 18:17