I enchanted a problem displaying a DataTable - contextMenu when it is within a TabView. The contextMenu would appear off centered. The DataTable - contextMenu works when it is not wrapped in a TabView.
I filed an issue on the PrimeNG GitHub site https://github.com/primefaces/primeng/issues/1090
Here is an image of a screenshot.
I had the same problem but managed to solve it by adding appendTo="body" to context menu component as below:
<p-contextMenu #cxtMenu [model]="ctxtMenuItems" appendTo="body" ></p-contextMenu>
Add appendTo="body" to context menu component it should solve it
Possible Solution
I was able to correct this issue by overriding the ui-tabview's position
.ui-tabview {
position: initial;
}
Related
Does anyone knows the names of the style-class for the HTMLEditor's toolbar buttons in image below ?
I got a list of the other buttons:
Thanks in advance.
These CSS classes are in HTML-Editor > bottom-toolbar:
format-menu-button — ComboBox
font-family-menu-button — ComboBox
font-size-menu-button — ComboBox
See for details: JavaFX CSS Reference Guide
Hi I am using bootstrap drop down button but it's height is smaller than button
I don't wont to use since I'm Using already.
thanks in advance
Because you provide only image, so i can only provide bootstrap document
http://getbootstrap.com/components/#btn-groups
Please be sure you add class btn-group on wrapper div of dropdown button.
Try this: http://www.bootply.com/MincjjEhJw
When I have a menu item which contains a submenu, this submenu is shown inside the menu's div, screwing the css (hover over the Services tab):
http://jsfiddle.net/jYXnE/2/
There this part of the JS (that everyone seems to use) which bothers me when initializing the menubar plugin:
position: {
within: $('#frame').add(window).first()
}
Since there is no frame id anywhere in the official examples, I guess it creates a div on-the-fly?
I compared my code to some other menubar jsFiddle and I can't find the issue to it, any help would be highled appreciated.
It seems like I had forgotten to link menubar's CSS. Everything is fine now.
Please Anyone Suggest Me..
I have an problem that i want to add textinput or Any Component to TextArea Component...
Thanks,
The Flex TextArea component is not a container, so it is unusual to try to add children to it. You probably can do so, but you will have to re-write the TextArea's layout code and positioning to add your new component. You'll find this code in the TextAreaSkin.
i have an asp.net ajax hovermenuextender on a modalpopup panel to display a tip on hover.
the problem is the (tip) panel with the hovermenuextender appears below the modalpopupextender in IE8
this is a z-index issue, is there any place in the page where i can set the z-index for the hovermenu so that it appears over modalpopup,
i learnt that this change could be made in the PopupBehavior.js file from here:
http://ajaxcontroltoolkit.codeplex.com/workitem/26107
but i am using the Ajaxcontroltoolkit.dll in the project and its not possible to modify the ajax javascript source files.
thanks in advance.
I have running version AJAX 3.0 and adjusting the z-index did the trick. Thank you!
Make sure your PopupMenu container has higher z-index than the modal popup control. If you use Firefox with Firebug plugin you can find it easily when the page gets rendered. Just right click on the modal popup background -> Inspect element with Firebug -> on the right side swap to the "Computed" tab and you will find the current z-index in the object properties.
In the CSS classes for your Modal Popup and the Model Background you can try adding an overriding z-index entry that is less than the default for the hover menu popup. Something like:
.dialog {
z-index: 99 !important;
}
.dialog-bkg {
z-index: 90 !important;
}
Apply the "dialog" class to your modal popup panel, and supply the "dialog-bkg" class in the BackgroundCssClass property of the ModalPopupExtender.
I don't know if it will solve the issue with the hover menu -- but it may be worth a try.
BTW -- I just tested with version 4.1.404 of the Ajax Control Toolkit and I was able to use a hover menu on top of a modal popup without needing any changes...