About htmlb tags

hi all
iam new to bsp's and i like to know the use of all the htmlb tags and how could i use them it is better if i got this with an example explaining these please provide me the link.

Hi Krishna,
The following link may help you.
HTMLB GUIDE              http://www.sapdesignguild.org/resources/htmlb_guidance/index.html
Regards,
Sahidur

Similar Messages

  • JSP HTMLB tags/Taglib

    Hi all,
    Are there any JSP HTMLB tags like there are in the portals environment? i.e., tableview, button, tray, etc.?
    I know there's a mobilehtmlb.jar, but I couldn't find anything about htmlb tags for MI.
    If you have any idea/info, please let me know.
    Thx,
    mike

    Jelle,
    I found the jars, but I am awaiting a response from the product manager.   Through a NoClassDefFound error, I found out I also had to add logging.jar.
    Now this is what I'm getting:
    java.lang.NullPointerException
         at com.sapportals.htmlb.util.Log.getLoggingProperties(Log.java:22)
         at com.sapportals.htmlb.util.Log.getLogLocation(Log.java:44)
         at com.sapportals.htmlb.rendering.RendererManager.createUIBrowserRenderer(RendererManager.java:416)
         at com.sapportals.htmlb.rendering.RendererManager.initialize(RendererManager.java:446)
         at com.sapportals.htmlb.rendering.RendererManager.getJavascriptFileName(RendererManager.java:493)
         at com.sapportals.htmlb.rendering.PageContext.getJavascriptUrl(PageContext.java:996)
         at com.sapportals.htmlb.rendering.PageContext.createDocument(PageContext.java:1015)
         at com.sapportals.htmlb.taglib.PageTag.doStartTag(PageTag.java:53)
         at jsp._0002fjsp_0002fmenu_0002ejspmenu_jsp_30._jspService(_0002fjsp_0002fmenu_0002ejspmenu_jsp_30.java:107)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    ..etc., etc...
    Let me know if you have any ideas.
    Thanks,
    mike

  • Noob question about DIV tags

    Learning DW and CSS so patience is in order .
    I've being reading numerous posts here and on the web about avoiding tables for laying out web pages. I can see the advantages in terms of cleaner codes and easiness of updating and changing sites at a later time. So I started learning about DIV tags (although tables is very easy for me) and have practice a few times with fairly good results, love the absolute positioning with it. Having said that, for the love of me, can't find a way of centering horizontally a page designed with DIV tags (due to ignorance), for example, 1 column/three rows page, after defining styles, size and colors I enclosed everything in another DIV tag, wrapper I think is called, but have not found a way of centering it on the page, text-aligment on the DIV tag only centers the text not the DIV itself, how to go about this? Help is appreciated.

    love the absolute positioning with it.
    Get over it.  It's a trojan horse.  Absolute positioning is not a general layout method.
    To center ANY block (non-absolutely positioned) element, use CSS to give it a width and left/right margins of 'auto'.  For example -
    <div id="foo">...</div>
    That div will be centered with this CSS -
    #foo { width:300px; margin:0 auto; }
    I think you are on the wrong path already, though.  Stick with tables (which you say are very easy for you) UNTIL you a) understand CSS well enough to understand what absolute positioning is and why I say it's bad, and b) understand how to use float, margin, and padding to place things on the page.  Then you are ready to move away from tables.

  • BSP's with htmlb - Tags on Browsers for Apple Computers

    Hello,
    I have a question. I use htmlb - Tags in a lot of BSP's. At the most Browsers for Windows Systems there is no problem, but at the Safari Browser or the Internet Explorer for Apple Mac OS X the Sites with htmlb - Tags won't work.
    Does anybody know why?
    Greetings
    Timo

    hallo Timo,
    Actually on Friday we got an official update on the question of Safari support. In summary SAP will <b>not</b> natively support the Safari browser. However, what we will do, for <u>design2003 only</u>, is to recognize the Safari browser as an IE6 browser. The official statement is that what works, works. No code changes will be made to handle any special cases of Safari browser. It is acceptabled that Office Integration, handling of PDF documents and any ActiveX stuff will not work.
    This change should be in 620SP46 or SP47. If you should be in a hurry, consider to modify our browser recognition code already now.
    bye, brian

  • Detailed descriptions of HTMLB tag attributes

    Hi
    I am making progress on by first pages, but one of the stumbling blocks I am having is where can I go to get a detailed description of the attributes for the HTMLB tags?  For example, while I am trying to understand tableView iterator, I am using TableViewColunm/s to clean up my tables for a small presentation.  I have found descriptions for a few of the attributes, but not all of them. 
    I tried searching on-line, but have not found the complete listing.  Is there such a thing and if so would somebody be kind and point me in the right direction?
    Thanks for all the help
    John

    hi,
    check this example in se80 SBSPEXT_HTMLB.
    and also BSP Extensions->Transportable->HTMLB and check the attributes on doubleclicking on it you will find the description for all the attributes
    cheers
    bhavana
    Edited by: Bhavana Amar on Apr 22, 2010 7:28 AM

  • Please help me to get knowledge about struts tags(html,bean,logic).

    hai Friends,
    I know basics of struts. I have done basic examples.
    I have to know , how to get dynamic values in "view".
    Instead of writing like this..
    <html:select property="color1" size="4" >
    <html:option value="red">red</html:option>
    <html:option value="blue">blue</html:option>
    <html:option value="green">green</html:option>
    <html:option value="orange">orange</html:option>
    <html:option value="red">red</html:option>
    <html:option value="pink">pink</html:option>
    </html:select>
    How to use <html:options> tag to get dynamic values.
    I have to get knowledge about this tags, so please suggest some
    sites (or) send some materials (or) send some live examples("[email protected]"). It will very useful..
    thanks friends....
    take care...
    bye.....
    will be very useful for me...

    you have to have a list of label and value pairs in you ActionForm then define it in your jsp to able able to use it in your <html:options> tag
    ActionForm
    public final class ColorForm extends ActionForm {
        public String color;
        public void setColor(String color) {
            this.color = color;
        public String getColor() {
            return this.color;
        public List getColorList() {
            List l = new ArrayList();
            ColorLabelValueBean lvRed = new ColorLabelValueBean();
            lv.setLabel("Red");
            lv.setValue("R");
            l.add(lv);
            ColorLabelValueBean lvGreen = new ColorLabelValueBean();
            lv.setLabel("Green");
            lv.setValue("G");
            l.add(lv);
            ColorLabelValueBean lvBlue = new ColorLabelValueBean();
            lv.setLabel("Blue");
            lv.setValue("B");
            l.add(lv);
            return l;
    }Label - Value Bean
    public final class ColorLabelValueBean implements Serializable {
        private String label;
        private String value;
        public void setLabel(String label) {
            this.label = label;
        public String getLabel() {
            return this.label;
        public void setValue(String value) {
            this.value = value;
        public String getValue() {
            return this.value;
    }JSP
    <bean:define id="colorListOption" name="ColorForm" property="colorList" type="java.util.List" />
    <html:select property="color">
         <html:option value=""></html:option>
         <html:options collection="colorListOption" labelProperty="label" property="value" />
    </html:select>
    ...Good luck!

  • HTMLB Tag Library

    Hi,
    I wanted to know that if there is any possible way of including the tag library as a reference object while developing portal components in the EP perspective under web dynpro.
    Is it possible for a view where I can see a list of possible components available in the HTMLB tags and their respective properties and also if there is a way where I can use the drag and drop functionality to add the tags into my application.
    Thanks in advance,
    Pinac

    Hi,
    The following documents might be of help to you:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/94e976d3-0801-0010-92a0-c0725f115860
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7f52fd28-0b01-0010-afb0-cc70884fa369
    Regards
    Srinivasan T

  • Question about HTMLB:tableView with nested tag

    Dear experts.
    1. I have one question that can I code like below.
    2. And what is the mean of "$something$". when I run the page I met the error $TVCID$ is no more supported from design2003.
    <htmlb:tableViewColumn  columnName    = "myicon"
                            type          = "user"
                            title         = "Image"
                            horizontalAlignment="center" >
         <htmlb:link         id            = "$TVCID$"
                             onClick       = "$CARRNAME$"
                             tooltip       = "$CARRNAME$">
          <htmlb:image        src           = "$TVCVALUE$"
                              alt           = "$TVCVALUE$"
                              tooltip       = "$CARRNAME$" />
         </htmlb:link>
    </htmlb:tableViewColumn>

    Hi.
    You have more options to solve the problem.
    First you can set your design to 2002.
    <htmlb:content design = "DESIGN2002" >
    or
    you can use an iterator
    or
    you can use the following code
    <htmlb:tableViewColumn columnName = "TVCVALUE"
                           type       = "LINK"
                           linkClickTarget = "ONCLICK" (<- InputProcessing)
                           title      = "Image"
                           horizontalAlignment = "center"
                           tooltip    = "CARRNAME" >
    </htmlb:tableViewColumn>
    Hope this helps
    Greetings
    Claudia

  • Question about id3 tags

    i had all of the fields of all my songs just how i liked them. i thought itunes had written everything i had edited into the id3 tags of all the songs. apparently, it didn't work.
    i am using another software called serato. i took the mp3's whose tags i edited in itunes and imported them into serato. i know this program is able to read all versions of tags, so i found a suggestion someone made to strip the id3 tags. this process called for selecting all the songs, converting the id3 tags to "none", then changing them back to a certain version (v2.3 or v2.4).
    after doing this, i take a look at my itunes library and about 80% of all my songs have their tags messed up. either the genre is back to what it was before i changed it a while ago, or (more annoyingly) the song titles are all truncated to a certain length.
    1. is there any way to undo this? or am i going to have to manually go back and re-edit all the fields?
    2. is there a better way of ensuring itunes is correctly changing the id3 tag fields? for example. if i edit the id3 tags on itunes on one profile on my mac, then take the same mp3 file and import it into itunes on another profile, the id3 tags seem to not have been changed at all.
    help anyone? this whole thing has got me really frustrated. thanks in advance.

    In Serato setup, check box Read iTunes Library. However this doesn't solve the problem, only creates yet another location for cleaning up....
    Having somewhat same issue: Converted all id3 from iTunes succesfully, but couldn't import files correct on other macbook in iTunes (same version)?!?!? Doesn't read id3...

  • I need to be taught about ID3 tags - help, anyone?

    Some of my songs are only appearing on 'Songs' on my iPod, and not simultaneously under 'Artists'. I have found this is because probably because of ID3 tags.....I don't know what they really are and I don't know how to fix ones that aren't 'complete' - in that they aren't under 'Artists' on my iPod. All help (including tips on any programs to help fix this) is appreciated!

    Don't worry, I found out about Media Monkey and through that I got the missing tags from amazon!

  • Question about Id3-tags and song managem

    Hello, I am getting ready to buy a Zen Touch 20GB in a couple of weeks and I have a few questions about the management software.
    (Correct me if I am wrong about something)
    ) Are songs organized into groups by Genre instead of just folders like on the Ipod?
    2) Are Id3-tags used instead of filename for identification?
    3) What parts of the tag are needed besides title and artist?
    4) Which version of tags does the Zen Touch recognize: Version or Version 2?
    5) If I edit my tags using an external program such as Id3-TagIT, will the tags carry over to the Creative software and to the player?
    Thanks a lot for your help. I want to make sure I have my music collection in order before I get my Zen Touch.

    euph_jay wrote:Ok, so lets say I have all my music in folders right now seperated into different categories on my hard dri've. Some folders denote the artist, some the album, and some a genre. Example: Folder: Chicago Contents: Chicago .mp3 files Folder: Techno Contents: various Techno artist's songs What is the best way of organizing my folder system, so that the transition will be easy to the player?
    Folders are pretty much irrelevant. What the software will do is look at the *tags* in the files and then use these to build the player's library.
    Will imbedded folders work on the player? (like Techno->Crystal Method->Cystal Method .mp3's)
    Again the player has no concept of folders, although if you set Techno as a Genre tag you will be able to view via this in the Music Library.
    Or, am I misunderstanding how music is stored into the mp3 player. Instead of storing music in a "folder like" system (like the Chicago folder or Techno folder), does it store all the songs individually on the device? Then you have to sort it by artist, album, or genre?
    Using your example, in the Music Library you have essentially three categories: Album, Artist, and Genre. So under Album you would see "Vegas" (the Crystal Method's album), under Artist you would see "The Crystal Method", and under Genre you would see "Techno" (and then either the album or artist under this... I forget which it is offhand).
    Make sense?

  • Need info about showtree tags FeedURL & DownloadURL

    We use showtree and see two tags we had some questions about...
    FeedURL
    What is this used for? We couldn't find documentation and it isn't used globally with every podcast on our iTunes U site.
    <LinkCollectionSet>
    <LinkCollection>
    <Name>Links</Name>
    <Handle>1401671880</Handle>
    <FeedURL>http://deimos.apple.com/WebObjects/Core.woa/LinkFeed/utah.edu.1347470921.0140167 1879.01401671880</FeedURL>
    </LinkCollection>
    </LinkCollectionSet>
    It also is outside the "Group" tags. Why?
    DownloadURL
    To get this to display anything we have to change "DownloadTrack" to "Browse". Why? Are there any doc's on this tag?
    <DownloadURL>https://deimos.apple.com/WebObjects/Core.woa/DownloadTrack/utah.edu.1347470921.0 1347470927.1343348323</DownloadURL>
    <DownloadURL>https://deimos.apple.com/WebObjects/Core.woa/Browse/utah.edu.1347470921.01347470 927.1343348323</DownloadURL>

    Hate to answer my own posts, but the answer was emailed to me, so, I thought I would share with others on the forums that are interested.
    One type of LinksBox is a top download box on a Public Feature page (which some people call the Stanford template). A possible use case for that a school could use the RSS feed from that link box to dynamically update a list of top downloads from their iTunes U site on a school web page.
    It also allows you to update links on a course page and have them dynamically update within a web page that is pulling data from that RSS feed.
    In these cases, schools would be using them more for dynamically updating content across multiple locations than for providing users with a subscription feed that would deliver new content.

  • About jsp tags..............

    Pls help
    I am studing about JSP
    if we write code in scriptlet tag i.e. < % %>
    code goes into service() method of servlet ,which is automatically created by jsp Engine
    if we write code in declaration tag i.e. <%! %>
    code goes outside service() method of servlet ,which is automatically
    created by jsp Engine means at class level.
    is their any tag so that jsp code goes into init() method of servlet ,which is automatically created by jsp Engine for that jsp

    simple and straight u need to code init() method using <%! %> tags.. but in case JSP it has to be jspInit() method.
    The jspInit method is called by the container once and only once for a servlet instance. As you might guess from its name it is used to do initial once only setup such as getting resources and initialising variables that are used in the JSP page. The jspInit method can be overridden within a JSP page with code like the following.
    <%!
    public void jspInit(){
    /*getServletConfig is inherited */
    ServletConfig config= getServletConfig();
    %>REF : http://www.examulator.com/moodle/mod/resource/view.php?id=380
    REGARDS,
    RaHuL

  • Accessing one htmlb tag by another

    How can I access one tag by another.
    So once the user selects an option from a dropdownlist, javascript gets executed that stores what the user has selected into a hidden inputfield.
    I need another dropdownlist to be able to read what has been written into that inputfield. Is there a way I can access the inputfield from the second dropdownlist tag ?
    Thanks

    There are a couple of methods that will enable you to do this: -
    1) (possibly the simplest) Have the input field as standard HTML tag as you can have both HTMLb elements and normal HTML in a JSP page. Then you can reference the element by using the standard document.getElementById('<tagid>').value
    2) (Slightly more complex)
       Have this type of thing at the top of the JSP page "<%String inputId = null;%>". This is the variable that will store the ID of the inputfield (or any other HTMLb element).
       Then, to set this field to the value required
       <hbj:inputField
        id="myfield"
        text="Click Here"
        tooltip="Click Here"
        disabled="false"
       >               
       <%inputId = myContext.getParamIdForComponent(myfield);%>
       </hbj:inputField>
       Then, you should have some javascript like this
    alert(document.getElementById('<%=inputId%>').value);
       Please note that this Javascript normally has to be after the set up of the innput field so that the inputId field is filled in before the javascript is executed
    I hope this helps
    D

  • Jsf  warn about nested tag

    hi I try to make a dynamic data table wtih jsf 1.2; When I run my pr�ject on the server I have gor this warn in my server log.�s there ther e somebody who know this problem.
    My datatable code:
    <h:column id="column11" >
    <f:facet name="header" > </f:facet>
    <h:commandButton action="#{RefKayit. detaysil} " rendered="#{ RefKayit. edit1}" image="img/x. gif" id="s"></h:commandB utton>
    <h:commandButton action="#{RefKayit. detaysil1} " rendered="#{ RefKayit. edit}" image="img/x. gif" id="ss"></h: commandButton>
    </h:column>
    warn on the server log:
    23519: 09:21:18,551 WARN [HtmlResponseWriter Impl] HTML nesting warning on closing td: element input rendered by component : {Component-Path : [Class: javax.faces. component. UIViewRoot, ViewId: /TestReferansTanim. jsp][Class: javax.faces. component. html.HtmlForm, Id: tref][Class: javax.faces. component. html.HtmlDataTab le,Id: update][Class: javax.faces. component. html.HtmlColumn, Id: column11][Class: javax.faces. component. html.HtmlCommand Button,Id: ss]} not explicitly closed
    thanks
    how can � solve this warn?

    My guess is that you're not resetting state in the parent tag handlers (e.g., data set by the nested tag handlers) correctly for them to work with tag handler pooling. For some more info on this, see an article I wrote for ONJava.com a while back (the "Tag handler life cycle and instance reuse" section):
    http://www.onjava.com/pub/a/onjava/2001/11/07/jsp12.html?page=2
    or my JavaServer Pages book (O'Reilly), plug plug :-)
    http://www.thejspbook.com/
    Tomcat 4.1.x uses tag handler pooling by default, but LiteWebServer (which is my company's product, BTW) disables pooling by default. Not sure about Jetty, but it's likely that it also disables pooling. For Tomcat 4.x and LiteWebServer, you control pooling through an init parameter to the JSP servlet in the conf/web.xml file:
        <servlet>
            <servlet-name>jsp</servlet-name>
            <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
            <init-param>
                <param-name>enablePooling</param-name>
                <param-value>false</param-value>
            </init-param>
        </servlet>I suggest that you disable pooling in Tomcat first and see if that helps. If so, you know what the problem is and can use the hints in my article to fix it.
    Hans Bergsten (JSP and JSF EG member)

Maybe you are looking for

  • WRT54GS no longer recognized by EasyLink

    Well, it's been a hellish two days since I purchased this product.  I've always used Linksys in the past, and was surprised, after I had setup the home network using the EasyLink software included with the router and having no difficulty assigning al

  • How to Freeze all columns in OO ALV.

    Hi Guys,     I don't want the user to drag one column from one position to another position.How to attain this in OO ALV. Thanx in advance. Regards, Anji

  • MBPro Win 7 x64 Errors

    Hi, I have recently bought a MacBook Pro 2009 from a mate who sold it as faulty. The Apple store said it was a faulty Logic Board but couldn't say for certain what the problem was. Having experience with PCs I tried putting an old HDD in to test if i

  • HDMI to DVI Problems (Detailed in Post)

    I have two brand new Core i5 Mac Minis running Snow Leopard.  They shipped with the usual HDMI to DVI adapter, to which I plugged in an HP S2031 displays; however, OS X is detecting each display as two separate displays.  In addition, if the computer

  • Settings Bundle not working properly

    Hi everybody, I have a problem using the settings bundle. I created my bundle and verified my .plist files with an XML validator. Unfortunatly when I execute my application for the first time it crashes! I notices that [[NSUserDefaults standardUserDe