panel

Javascript library for dockable panels/tabs?

In the process of converting a .NET rich application to Javascript. One of the GUI features folks liked a lot was to rearrange their application layout. In .NET this was accomplished via Sandock: http://www.divelements.com/net/controls/sanddock/screenshots.aspx Anything like this for Javascript? ...

Progress Panel in Java

Hi! Can anyone could give an idea about how I can make a ProgressPanel in a Java Application?... The idea is basically to call a Frame with a progress bar and wait until the operation is done. However, I got some few problems, I suppose that a Thread must be used. Any suggestion? Thx ...

using gwt-dnd with new layout panels of gwt 2.0

I'd like to use gwt-dnd within an application that uses the new 2.0 layout panels. however, gwt-dnd only accepts AbsolutePanel as its container for drag and drop. is it possible to use AbsolutePanel within, say, a DockLayoutPanel? ...

Drawing on a panel in the constructor of a form

I have the following sample code, which I expect to color the panel on the form red as soon as it loads: public partial class Form1 : Form { public Form1() { InitializeComponent(); drawstuff(); } public void drawstuff() { using (Graphics g = panel1.CreateGraphics()) { g.C...

How to create a panel for admin to change some contents in HTML?

My question is this. There are some texts,reports written on the webpage under the div tag. This text should be changed once a week. But, the person who is updating can't use the simple copy and paste because, when he do that the whitespaces, enters are ignored. So, my purpose is creating a panel to change only that part of webpage with ...

Jquery-animating left to right absolutely positioned div

Hello, I have a hidden panel off the left side of the screen which slides into view on the click of a 'tab' positioned on the left side of the screen. I need the panel to slide over the top of the existing page content, and I need the tab to move with it. This is an example of the original code which i have changed, how can I get the b...

How to show/hide a panel.

When the mouse hover, the panel will be show on the left side and leave the mouse it will be hiden. How to do that in WPF? Is there any component? ...

How can i change the Java Runtime Version on Windows (7)

How can i change the Java Runtime Version on Windows. i installed java7 for some tests, now i need as system default the old java6, but i dont want uninstall the java7 (need it for later tests). can i change the system used jre in the control panel/java/jre tab? i can change/edit/add/delete user used version, but not the system used. ...

How do i add some more fields in Magento -> System -> My Account

Hello , I am new to magento and trying to add some more fields there. i am using magento 1.4.1.0 and also trying to so called override methods for block and controller. but i am not able to see the changes. Can anyone help ??? ...

Effect of Update Pannel not seen in the Chrome and Mozilla browsers.

Iam using the date picker in the insert functionallity in the footer of gridview in asp.net. The effect of the update panel for the date picker is seen only in IE. But in the Mozilla and Chrome browser the whole page refreshes, and the calander is not seen. Code that works for IE well but not for Mozilla and Chrom browsers. ...

Panel data: dealing with lagging and binary dependent variable with plm

I am attempting to run a pooled logistic regression with panel data and a binary dependent variable. Since I wanted to lag some of the variables, I used the plm package to create them. When I tried to do it other ways, I ran into problems. I can't use lag or embed, because it is panel data. hybridsubsidies <-pdata.frame(reduced, c...

ExtJS: How to extend an Ext.Panel with a BorderLayout?

Hi, I am trying to display a panel with a BorderLayout. The panel being displayed is an instance of an Ext.Panel subclass. I had the panel displaying perfectly before attempting to add the layout, but with the layout added it doesn't show at all, without throwing any errors or giving any useful feedback whatsoever. Using exactly the same...

Is it possible for WinForm controls (Panel,etc.) to grow like a webform control?

Hello, I'm converting an app from ASP.NET WebForms to WinForms. There is one asp.net page which contains a ListView/Repeater that contains several custom controls, which in turn contain a ListView with other custom controls. Basically the layout looks like a TreeView, but on each node/leaf there are few controls like comboboxes, etc. Wh...

panel with scrollbar

hi am using c# vs-2005 as per my previous thread i have created textbox one by one on enter keypress event and same thing concern with it that : when the textbox created by enter one by one but when it reached to bottam of the panel the location of the textboxes are changed with vertical scrollbar. the scrollbar size changed with smal...

How to disable click through on transparent control?

We have a mapping form in our application that needs a Google Earth background image, and as you can't use the Google Earth plugin in a browser that is under a panel, we use a second form to show the background image. We have a transparent panel on the mapping form that the drawing is done on while Google Earth is drawn on a form held in...

Flex 3 Panel titleIcon click event

Hi, I would like to add an title Icon image to a Panel, but cant find the click event on that icon, ...

Flex 4 Panel Border Skin

I'm trying to create a skin for a Flex 4 spark Panel that will create a border on the left/right side of the panel that matches the header of the Panel. Basically a silver frame all the way around the edge of the Panel similar to the old Flex 3 mx:Panel. I've been experimenting with a skin file all day and can't get anything to work. ...

HoltWinters on Panel Data

I am trying to run the HoltWinters procedure on panel data to come up with sales forecasts for a list of companies. My data frame has the fields "Company", "Year" and "Sales". I am interested in adding an extra column to this data frame that shows fitted sales obtained using HoltWinters. For a single company, the exercise is trivial as ...

what is better Doing AJAX call or use UpdatePanel for updating a panel?

In my application i need to update a panels content after the button click which do some server side processing. I don't want to do full page postback. I can achieve this in two ways : By doing a AJAX call or by using a update panel. But I am confused to choose one. Which is a better option in this case? Thanks in advance. ...

How to dock to the top and the left.

With An anchor I can write the following line: myControl.Anchor = (AnchorStyles.Top | AnchorStyles.Left); And it will anchor myControl to the left and the top. Why can't I do the following: myControl.Dock = (DockStyle.Top | DockStyle.Left); I can write the above line, but all it does is set the DockStyle to left. Any thoughts/rea...