on 2009 Mar 09 9:18 AM
Hi all,
How can I open a PopUp window without title?
I have only one command related to window title:
window.setTitle(string);
But I need it without title at all.
Any idea?
Thanks,
Michael
Hi,
I have only one command related to window title:
window.setTitle( null );
Best Regards
Ravi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
This option is not in API,Because they provided the default skeleton under which we can design our UI.
So modification on this default feature is not available.
we can additionally remove the following WindowFeature
MENU_BAR("menubar", Availability.EXTERNAL_ONLY),
TOOL_BAR("toolbar", Availability.EXTERNAL_ONLY),
STATUS_BAR("statusbar", Availability.EXTERNAL_ONLY),
ADDRESS_BAR("addressbar", Availability.EXTERNAL_ONLY);
i.e
confermationDialog.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);
Best Regards
Satish Kumar
Hi Michael
In this way I have no idea.
But Portal theme has its own purpose for branding and customization based on the end user/client preference.
Whenever we deal with window by default it has some own characteristic like size ,shape,taskbar ,color etc whether it is RCP,HTML,Swing or webDynpro.
Can u discuss the requirement?
Best Regards
Satish Kumar
Hi
Very First tell the version of NWDS?
Second have a look on this [this|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0c6132f-4ea3-2b10-4d8f-e68d2e96113d]
(Here context is different but we can say based on this article that some workaround we can do(applicable only for CE EHP1))
Third We can give not exactly but a little different solution to this (your ) problem
1. By using buttons with has no text only standard icons provides by sap ( X ) in red color.with associating action which close the popup.(button will be at right corner of popup with red signal will gives a intuitive feel like normal window )
2. Some places i have seen(in CE version) that SAP uses this options(normally when they provide some kind of help).
Best Regards
Satish Kumar
Hello Michael
I don't think so
1.ImageSource property if there for Button UI Element?
2.Default Image repository is also not available in 7.0.(for this we have option to put image in 1 MIME folder)
If yes for 1
Then I suggest to use button solution(which is there in previous reply) and let header will be there.
and take the image form [here|http://images.google.co.in/images?q=close+button&hl=en&client=firefox-a&rls=org.mozilla:en-US:official&sa=G&um=1&imgsz=icon]
Best Regards
Satish Kumar
Hi Michael,
If you comment this line
//window.setTitle(string);
I think it solves your problem. If you still get problem then try like this:
// set an empty String
window.setTitle(" ");
Regards,
Siva
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
check the window properties . may be there is option with out providing title .
.SetTITLE () you can aviod it . and in the properties the description or text check which
can certainly help you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
10 | |
10 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.