list window does not disapper of Obout ComboBox control - asp.net

I am developing a web application. I used ajax Update panel & under update panel I used gridview for displaying data. In gridviews edit template I used three Obout ComboBox Control(third party) and bind the data from database.for moving one control to another controls I am using tab key.I used tab key from one combobox its move on second combobox when its move then it is displaying list window of combobox it wont disappear after I go to next control and also when I save the data it well display list of comboxBox.
For example of marked comboBox I attached two images
1)”” when I move one comboBox to another comboBox it is displaying list
2)”” when I save the data it is displaying list window of comboBox.
But when I remove the update panel it won't display such list after focus is moved.
Note:When I use mouse to move one comboBox to another comboBox, list window of ComboBox wont come on screen.
VS:2010
Code-Behind:VB.net
Obout Suite Version:3.5

using obout comboBox property openOnfoucs="false" , solved the problem. It does not display list window when focus moved to another control.

Related

Select checkbox of gridview with keyboard in asp.net

I am using GridView on my page, which retrieves data from SQL database.
The first column is named OK and has a Checkbox in each row.
I want to select each check box with the help of keyboard instead of mouse.
The shortcut for toggling a checkbox is the spacebar, so as long as you have the checkbox highlighted, you can use that to check each box.
Next, check out some articles on adding GridView keyboard navigation:
GridView column and row navigation using up/down/right and left arrows
GridView Rows Navigation Using Arrow (Up/Down) Keys
GridView Up and Down Navigation using jQuery

Link from wicket grid control

I am using a grid created in Apache Wicket. In the cells of one of the columns I have an icon. When that icon is clicked a pop up should be created showing data for that row. How should this be implemented so that the pop up is created and populated ONLY IF the user clicks on an icon? Can I link from the grid cell directly to java code where the pop up will be created?

Looking for a vb.net code to add existing buttons/text boxes/drop down lists, etc. to a container, or holder?

I'm using vb.net. Basically, I have a drop down list, text box and a submit button. You choose a movie director from a drop down list, then type in a movie, click button and it adds the data to my database.
There's another button which hides/shows drop down list, text box and submit button using Visible = True and Visible = False, but what I don't like about it is when it hides the things I said before, it leaves some white/empty space like if they are still there, but not visible.
Is there anyway to put some kind of holder/container and place a button which when clicked could add my drop down list, text box and submit buttons to that place?
Cheers,
E.N.
I assume that you are working with WinForms in Visual Studio. In the Toolbox the controls which could help you out of this situation are in the "Containers" section. Among others, there is a Panel, a FlowLayoutPanel and a TableLayoutPanel (see this video on msdn for a TableLayoutPanel Demo). They can help you to organize controls. Especially the FlowLayoutPanel places the controls automatically. But you can always change the Top and the Left properties of any control, to move them around to the desired place or group some of them on a Panel and change the Location of this one one.
You can add a control to a container by using the Add method of its Controls property. However, if the control is already on the form (since you are asking how to add an existing control) you must remove it from the form before.
Me.Controls.Remove(myButton)
panel1.Controls.Add(myButton)

Flex Combobox and DateField Weird Bug

Using Flex 4.1 Build 16076
I have an mxml file, containing a textinput, a button, a datefield and a combobox.
The data provider for the combobox is an arraycollection.
When the flex application is started, the combobox's dropdownlist shows up fine. The calendar also displays when clicking on the calendar icon on the datefield.
Now when I click on the button which displays a popup window, and get the data from there and put it back on the textinput, combobox (select the item) and datefield, the combobox and the datefield does not show the dropdownlist and the calendar respectively.
I am not changing the data on datasource on the combobox. Merely selecting the item based on what was retrieved from popup window.
This one is really stumping me. Seems that the datefield and combobox does not respond to mouseevent. When the focus is on the combobox, I could still use the keyboard to change the values displayed, but the dropdownlist still does not show.
Has anyone encountered this behavior?
The resolution to this issue was to update the FlashPlayer to the latest version in Chrome.

Toggle viewstack within child component

I have a viewstack with two tabs.
In one of them there is a data grid shows a list of notes. The other one is includes a form that can edit notes or crates new note. I want the user to be able to add new note or edit existing note when clicks an item in data grid. I mean when user clicks an item the viewstack must become editor.
You can use the "selectedIndex" or "selectedItem" property on the viewstack to switch the active view. In your case, an event should be dispatched that bubbles up to the component containing the viewstack. When it arrives, the viewstack's active view can then be changed.

Resources