Skip to Main Content

Application Development Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Layout Structure for *html.txt file

653103Jul 9 2009
I'm developping a new layout for my project but I'm having a lot of problems with the *html.txt files, at workspace studio it works fine but at the administration console some placeholders aren't shown and I really do not know why, I changed the structure many times but I get at least one thing wrong... so... is there any documentation for creating this files??, something like ..."" you must use one and only one table... you must no use colspan or rowspan those are evil properties"""...., or something similar I just want to check where my mistake is, or prove the platform has some bugs :P

P.S.
I checked the source code at the admin coosole of my desktop and i found that the structure of the html.txt file is there and it's ok, but inside of every td tag you can see the divs that contain buttons and existing portlets for each placeholder but for the placeholders that aren't shown the output is just a < d i v / > tag, as you can see that tag is not the opening tag but is not the closing tag neither, so WTF is happening there??

Comments

Frank Kulash

Hi, Pericles
If dt is a DATE, then

 dt- TRUNC (dt, IW') >= 5

will be true if (and only if) dt is a Saturday or Sunday, regardless or any NLS settings.

Frank Kulash
Answer

You could also tell TO_CHAR explicitly to use a particular language, like this:

TO_CHAR (dt, 'Dy', 'NLS_DATE_LANGUAGE=ENGLISH') IN ('Sat', 'Sun')

regardless of what the system or session NLS settings are. However, you can't tell TO_CHAR to use a particular NLS_TERRITORY, which is what governs the 'D' format.

Marked as Answer by Pericles · Jul 26 2022
Pericles

Thank you so much Frank.
Appreciate your comment.

1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 6 2009
Added on Jul 9 2009
0 comments
728 views