DateBox Calender is coming behinde Vertical Panel Popup - gwt

I have a search icon, when i click on that, a search popup will opens(which is actually a vertical panel). In this Date textboxes are there. when i am clicking on a Data textbox. Its coming, but its behind the Vertical Panel popup.
My question is, when datebox is clicked, Calender should come front. What i have to do for that.
Can anyone please help me.
Thanks in Advance,
Saritha.

You need to set the CSS z-index property for the calendar to a higher value than the popup's z-index.

I had the same problem and Using z-index didn't work for me. I removed all z-index values from style sheets instead, and so far it worked.
Hope it can be of use for you.
G.

Related

Wix horizontal bar similar to tab component

I am new to Wix and to be honest kind of confused if there is a way to add a horizontal bar in my website.
So I have a multistate box with different states so when you press a button it takes you to that state.
What I want to do, is to somehow fit these buttons in the mobile version. I have seen that there are some components called tabs which could do the trick because they come with a default horizontal scroll bar or arrows when the content does not fit. Is there any alternative or an actual component I can add to my buttons and fix that issue?
Thank you in advance!

How to hide some contents from the PowerPoint slides, also which needs hidden from the selection pane?

I am working on PowerPoint slides, I am looking for hiding some of the contents from slides. The files I am going to make hidden should not be displayed or should not able to modify from the selection pane. Is there any solution for this guys ? I have tried some techniques there,
1.changed the text colour to the background colour.
2.edited the visible attribute value to false.
3.modified the tags noEdit , noSelection , noSearch etc for hiding contents from the slide.
The contents were then disappeared from the slides but it was displayed on the selection pane.
I just wanted to hide the contents from the slides and which cannot be accessed from the selection pane windows also.
Please help guys. Any help will be greatly appreciated. Thanks in advance!!

Can I get a scrollable tooltip in draw2d?

I want to make the tooltip scrollable in draw2D, just like in Eclipse when you call out the Content Assist window. Can anyone help me?
Thank you in advance!
I have never tried it, but I see no reason why using a org.eclipse.draw2d.ScrollPane in your tooltip shouldn't work. You will probably have to put the ScrollPane into another figure to restrict its size. Otherwise I suspect the ScrollPane (and with it the whole tooltip) would just have the preferred size of its content -> no scrolling.

GWT DialogBox - setGlassEnabled(true) does not cover the whole window

I set glass enabled to true of a GWT dialog box. However, when the user has scrolled down in the window, then the "glass effect" does not cover the whole window anymore.
Does anyone know how to fix that? Many thanks for any advices!
You need a css property such as
moveToPopUp.setGlassStyleName("myApp-PopupPanel-GlassStyle");
where
.myApp-PopupPanel-GlassStyle{
background-color : #333;
opacity : 0.4;
clip : rect(auto,auto,auto,auto);
}
There is no straight fix available, but you can:
1. Remove scroll when showing popup with addStyleName, removeStyleName
2. There is also other solution, but you have to change layout of your style and will limit your functionality so I do not recommend this. But if you are interested I can describe this.
try
glassPanel.setSize("100%", "100%");
where glassPanel is the name of your panel,
be sure to include the import statement.

How to disable hover effect to highlight menu items in GWT MenuBar?

I am making a vertical Menu using GWT MenuBar and selection of particular MenuItem shows content on the right, I am trying to make something similar to TabPanel, but with Tabs on left instead of being on top. Now, since I've got the Menu items and actions in place, I want to remove the effect of hovering over and changing color, and keep that menu item selected which was clicked last and whose content is loaded on the right.
I am open to any comments, if you have a better solution to implement this, using some other components(with-in) GWT, please drop in a comment with your suggestions, I'll really appreciate that.
Or if you can just tell me how can I disable this effect, of hovering and sticking to only that selection, That would be awesome too..
Thanks to everyone, taking time to read this and suggesting a solution.
It's all defined in the CSS of your GWT's theme (probably the default one), so it's a matter of overriding those styles - make sure it's not the other way around :) Inspect the code with a tool like Firebug to see what's exactly being set and change that.