Two ways:
var css = new StyleSheet(); css.Styles = ".fixed {position:fixed !important;}"; css.SetCssClass(panel, "fixed");
Or you can simply add a <style> section in Default.html selecting the panel by name [name=mypanel]. Or you can add a css file with the same selector.
2. Use a UserPopup with AutoHide set to false and show it using ShowPopup(0, 0) or any other coordinate – it will stay there forever. If you need to resize it attach to the Application.BrowserSizeChanged event or the page’s SizeChanged or Resize events.
HTH
Please login first to submit.