on 2005 Nov 11 8:08 AM
Hi All,
Can anyone tell me how two to write HTML code in
webdynpro application
to make myself clearer. this is what i want.
IWDTextView txt = (IWDTextView) view.createElement(IWDTextView.class, "txt" );
txt.setText("<hr>" + "Today Order");
But the above code is displaying literal string <hr> by the mean of <HR>
regards
Arun
hi all, is there a tutorial which actually teach us how to use the IFRAME with appropriate HTML code that is already design? if yes can i have the link? thx
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Arun,
The only way we can display formatted text in WebDynpro is through the IFrame UI element. If you have the code to be displayed at design time itself, create an html page out of the code and store it in src->mimes->components->yourcomponent folder. Now set the 'source' property of the IFrame as the name of the html page.
If you get the data to be displayed only at runtime, the following thread may help you in this regard :
Hope this helps,
Best Regards,
Nibu.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nibu,
What I actually want to do is that- I have designed
a view having order details one below other on same screen.
What I want is to print the order detail page wise.
i.e Ist Orderdetail on first page , 2nd Order detail on 2nd page and so on.....that is I want a page break.
I got a code to provide a page break which is in javascript -
<script>
//<!--
document.write("hi");
document.write("<p style=\"color: blue; page-break-before: always\" >");
document.write("hiafter");
//-->
</script>
How 2 use this code in my webdynpro application.....or
is there any other mean to do so.
regards
Arun
User | Count |
---|---|
81 | |
11 | |
10 | |
10 | |
10 | |
8 | |
7 | |
7 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.