Hi thowfik,
Greetings from Syncfusion support.
You can add the custom css classes to the root of the element by using the cssClass property.
You can customize the height and width of the popup by using the popupHeight and popupWidth property
Api Link:
After rendering the will be opened in bottom only. The popup will be open at the top when popup component has not sufficient to space has to open.This is default behaviour of our component
Please find the sample from below link
You can align the popup with left,right and center by using the css styles. For example align the popup in left refer the following code snippet
open: function(e) {
var changex = (listObj as any).inputWrapper.container.offsetLeft - parseInt(e.popup.width as string)
e.popup.position = { X: changex, Y: 0 };
e.popup.dataBind();
} |
Please find the sample from below link
Thanks,
Christo