HTMLB or html - when we need full control of look and feel and events

Hi Experts,
      In my requirement i  need to change the look and feel of the BSP UI as per customer standards and i need to have most of my processing on client side, Please advise me whether to go for HTMLB or normal HTML. mainly i fount most of the client side events are not available in HTMLB....
Thanks in advance
Karthik

Hi Karthik,
The look and feel of the BSP Tags can be applied via Portal. If you are seeing your BSP application through a protal system, then you can develop a theme inside the portal and apply it to your BSP application. The portal theme will be automatically supported by the HTMLB tags. For more infomation on this you can search in the portal forum section, you will find a lot of post for this topic.
But if you need a complex customization of the UI controls inside the BSP application, as suggested in the previous post you should go for HTML + Javascript library.
Hope it is helpful!
Regards,
Maheswaran

Similar Messages

  • Why does Firefox need to control my mic and my camera?

    To install Firefox on my phone I must first accept these permissions.
    Hardware Control:
    Record audio:- Allow application to access the audio record path.
    Take pictures and video. Allow application to take pictures and video with the camera. This allows the application AT ANY TIME TO COLLECT IMAGES THE CAMERA IS SEEING.
    I have stopped using Facebook Apps and many Google products because they what this sort of contol and basically I don't trust them.
    Why do so many apps need such spying power? and where can I download an old version of Firefox.android that pre dates this control freaky version? After all it used to work just fine without.
    Thanks
    Jonpon

    making permissions optional and controllable for the users is something that would have to be implemented on the OS level. if you have a device with android 4.3 or above it might already work through this hack: www.androidpolice.com/2013/07/25/app-ops-android-4-3s-hidden-app-permission-manager-control-permissions-for-individual-apps/

  • Need manual to implement training and event management

    Hi All
    I'm going to implement Training and event management for my client.Plz help me if u've any kind of manual or any guidelines for me.
    Thanks,
    SKM

    Hi Santosh,
    Best way to check the guidelines is to see help.sap.com.
    From my experience you need to follow the following steps:
    1. Create busness event groups
    2. Create business event types
    3. Create resource types
    4. Create resources
    5. Create external instructors (if any)
    6. Create companies (if any)
    7. Create locations
    8. Manage integration switches (SEMIN rows in T77S0 table)
    For the master data creaton activities above, you can create LSMW to make it possible for mass data upload.
    After your business catalog and all other master data is in place,
    1. Plan business events - PSVP
    2. Create business events wth/without resources - PSV2
    3. Book attendees- PSV1
    As recurring activities:
    1. Firmly book the events.
    2. Cancel events (if needed)
    3. Follow-up events.
    Regards,
    Dilek

  • Need full resolution HDMI audio and 2 CH optical simultaneously

    Am working on an install for a customer who has a Mac Mini.  He is running XBMC for all his movies.  I need to run HDMI to his surround processor with full resolution audio while running the optical out in 2 channel pcm for his whole house audio.  Is this possible?

    As standard sound would go to one or the other output, it is possible to configure things to send sound to both at the same time, but I would strongly expect this would require both to be configured the same i.e. stereo, rather than one being stereo and the other 5.1.
    To configure the Mac to send to both you need to use the Audio MIDI Setup tool in the Utilities folder.
    See https://support.apple.com/kb/PH5178?locale=en_US
    and How to combine multiple audio interfaces by creating an aggregate device - Apple Support
    It maybe that the easiest or more practical option would be to use an AV Receiver set to output via both its stereo and HDMI ports. The Mac would then just send via HDMI to the AV Receiver which would if needed handle the conversion and splitting of the signal.

  • Firefox regularly "forgets" my passwords when I need them for various sites, and I am compelled to re-enter them again, rather than finding them remembered. What's happening and how can I cure it?

    This problem is particularly noticeable after Firefox updates, but it seems to occur on its own.

    * Websites remembering you and automatically log you in is stored in a cookie.
    * You need an allow cookie exception (Tools > Options > Privacy > Cookies: Exceptions) to keep that cookie, especially for secure websites and if you let cookies expire when Firefox closes
    * Make sure that you do not use [[Clear Recent History]] to clear the "Cookies" and the "Site Preferences"
    Clearing "Site Preferences" clears all cookies, images, pop-up windows, software installation, and password exceptions.<br />
    Some cleanup programs can also remove the cookies,so you may have to check there as well if you use such programs (e.g. CCleaner)
    * http://kb.mozillazine.org/User_name_and_password_not_remembered

  • I need to control the position and size of each java swing component, help!

    I setup a GUI which include 2 panels, each includes some components, I want to setup the size and position of these components, I use setBonus or setSize, but doesn't work at all. please help me to fix it. thanks
    import java.awt.Dimension;
    import java.awt.GridLayout;
    import java.awt.FlowLayout;
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.event.*;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JTextField;
    import javax.swing.JPanel;
    import javax.swing.JList;
    import javax.swing.JScrollPane;
    import javax.swing.DefaultListModel;
    public class weather extends JFrame {
    private String[] entries={"1","22","333","4444"} ;
    private JTextField country;
    private JList jl;
    private JTextField latitude;
    private JTextField currentTime;
    private JTextField wind;
    private JTextField visibilityField;
    private JTextField skycondition;
    private JTextField dewpoint;
    private JTextField relativehumidity;
    private JTextField presure;
    private JButton search;
    private DefaultListModel listModel;
    private JPanel p1,p2;
    public weather() {
         setUpUIComponent();
    setTitle("Weather Report ");
    setSize(600, 400);
    setResizable(false);
    setVisible(true);
    private void setUpUIComponent(){
         p1 = new JPanel();
    p2 = new JPanel();
         country=new JTextField(10);
         latitude=new JTextField(12);
    currentTime=new JTextField(12);
    wind=new JTextField(12);
    visibilityField=new JTextField(12);
    skycondition=new JTextField(12);
    dewpoint=new JTextField(12);
    relativehumidity=new JTextField(12);
    presure=new JTextField(12);
    search=new JButton("SEARCH");
    listModel = new DefaultListModel();
    jl = new JList(listModel);
    // jl=new JList(entries);
    JScrollPane jsp=new JScrollPane(jl);
    jl.setVisibleRowCount(8);
    jsp.setBounds(120,120,80,80);
    p1.add(country);
    p1.add(search);
    p1.add(jsp);
    p2.add(new JLabel("latitude"));
    p2.add(latitude);
    p2.add(new JLabel("time"));
    p2.add(currentTime);
    p2.add(new JLabel("wind"));
    p2.add(wind);
    p2.add(new JLabel("visibility"));
    p2.add(visibilityField);
    p2.add(new JLabel("skycondition"));
    p2.add(skycondition);
    p2.add(new JLabel("dewpoint"));
    p2.add(dewpoint);
    p2.add(new JLabel("relativehumidity"));
    p2.add(relativehumidity);
    p2.add(new JLabel("presure"));
    p2.add(presure);
    this.getContentPane().setLayout(new FlowLayout());
    this.setLayout(new GridLayout(1,2));
    p2.setLayout(new GridLayout(8, 2));
    this.add(p1);
    this.add(p2);
    public static void main(String[] args) {
    JFrame frame = new weather();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    Use code tags to post codes -- [code]CODE[/code] will display asCODEOr click the CODE button and paste your code between the {code} tags that appear.
    [http://java.sun.com/docs/books/tutorial/uiswing/layout/index.html]
    db

  • Where do the files go when we deploy a user control, application page and event receiver?

    I have read that the files go into the HIVE\TEMPLATES\CONTROL TEMPLATES or \FEATURES once deployed.. 
    I have also read that we can right click on project and choose add mapped folder and select whether we want to put the page/user control under CONTROL TEMPLATES or FEATURES, etc?
    Which method is to be followed?

    The files in mapped folder created using Visual studio is copied to the appropriate folder in 14/15 hive on WSP deployment. Refer to the following articles for more information
    http://www.informit.com/articles/article.aspx?p=1626325
    http://blogs.msdn.com/b/vssharepointtoolsblog/archive/2010/03/12/deploying-files-using-mapped-folders.aspx
    http://msdn.microsoft.com/en-us/library/ee231544.aspx
    --Cheers

  • Need manual control of iso and shutterspeed with the camera

    The photos taken by 3gs is so coarse, with lots of noise
    We need a manual selection of iso and shutterspeed,
    at least, let us lock the iso, then change the ev to get clean pictures.
    I promise, i can hold the phone still longer than 1/10s
    At last, we need a selection of the size 1024*768 pixels or so.
    The size of the cmos is so small to provide 3Mega pixels.

    Unfortunately, you're not likely to get any of this, because
    1. The iPhone 3GS is discontinued, so it's very unlikely that Apple will introduce new features for it.
    2. The iPhone 4 has a better camera, which is another reason why there's unlikely to be a better solution for the 3GS
    You can send feedback to Apple here:
    http://www.apple.com/feedback/iphone.html

  • Issue with Task Control Call back and Event Choice in WLI BPM 8.1

    Hi,
    I am using a Task Control Factory to create Task Control Instances in a loop
    and then
    create tasks and assign them to a predefined group. I have an event choice
    for two events
    waiting for the onTaskCompleted and onTaskAborted event call backs.
    I have two such operations (of task creation) in the same loop. For
    simplicity I have used two separate task factory controls for each of the
    tasks (because I even had worse problems using a single control factory for
    both tasks in the same loop).
    When I instantiate the process, through work list I am able to claim, start
    and complete the first task. When I try the same procedure (claim, start and
    complete) on the second task, the the event choice for the corresponding
    task receives 2 event call backs. First it receives the onTaskCompleted as
    expected, but then it also received another call back of the same type which
    displays the error on the server log as:
    <Sep 24, 2003 9:43:56 AM EDT> <Warning> <WLW> <000000> <on process
    completion, 1 undelivered messages to
    'sampleRequestTaskFactoryCtrl_onTaskCompleted'>
    <Sep 24, 2003 9:43:56 AM EDT> <Warning> <WLW> <000000> <ejbLoad:
    Conversation 1064411008439:null not found>
    <Sep 24, 2003 9:43:56 AM EDT> <Warning> <WLW> <000000> <A message was unable
    to be delivered from a WLW Message Queue. Attempting to deliver the
    onAsyncFailure event>
    <Sep 24, 2003 9:43:56 AM EDT> <Warning> <WLW> <000000> <ejbLoad:
    Conversation 1064411008439:null not found>
    Does anybody know why two events are fired for the same work list action?
    Thanks in advance.
    Henry M

    Henry,
    Please post this question on the weblogic.developer.interest.integration
    newsgroup.
    Regards,
    Raj Alagumalai
    Backline Workshop Support
    "Henry Mugasha" <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    I am using a Task Control Factory to create Task Control Instances in aloop
    and then
    create tasks and assign them to a predefined group. I have an event choice
    for two events
    waiting for the onTaskCompleted and onTaskAborted event call backs.
    I have two such operations (of task creation) in the same loop. For
    simplicity I have used two separate task factory controls for each of the
    tasks (because I even had worse problems using a single control factoryfor
    both tasks in the same loop).
    When I instantiate the process, through work list I am able to claim,start
    and complete the first task. When I try the same procedure (claim, startand
    complete) on the second task, the the event choice for the corresponding
    task receives 2 event call backs. First it receives the onTaskCompleted as
    expected, but then it also received another call back of the same typewhich
    displays the error on the server log as:
    <Sep 24, 2003 9:43:56 AM EDT> <Warning> <WLW> <000000> <on process
    completion, 1 undelivered messages to
    'sampleRequestTaskFactoryCtrl_onTaskCompleted'>
    <Sep 24, 2003 9:43:56 AM EDT> <Warning> <WLW> <000000> <ejbLoad:
    Conversation 1064411008439:null not found>
    <Sep 24, 2003 9:43:56 AM EDT> <Warning> <WLW> <000000> <A message wasunable
    to be delivered from a WLW Message Queue. Attempting to deliver the
    onAsyncFailure event>
    <Sep 24, 2003 9:43:56 AM EDT> <Warning> <WLW> <000000> <ejbLoad:
    Conversation 1064411008439:null not found>
    Does anybody know why two events are fired for the same work list action?
    Thanks in advance.
    Henry M

  • I just upgraded to iMovie 10.0.1, latest release and need to move my projects and events to an external attached hard drive.  i do not see any hard drive icons in this release.  How do I do this?

    I just upgraded to OSX Mavericks and also the lastest release of iMovie.  The version says 10.0.1, but is it the latest release as of 10/14/2013.  I need to free up disc space on my iMac hard drive and move the contents of iMovie libraries to an attached external drive already functioning on my system.  I need to move both events and projects and keep all intact and related.  I have seen disc drives in the previous version of iMovie, but I do not in this one.  How do I move these items? I am in desperate need for disc space.

    You can create a brand new Library under File Menu>Open Library>New...
    Create the new library on the external hard drive. Then drag all the Events/Projects folders into that Library. Close the Library, quit iMovie 10.x. Now test the new Library by opening iMovie again and see that all the Events/Projects are there in the New Library. You can now safely delete or close the exisitng Library file as those are now duplicates of the real Library sitting on the external hard drive.
    Another way to do this is find the exisitng Library file, and simply drag it to the external hard drive in the Mac Finder (disk to disk copy of the Library file, by drag and dropping). Then go back into iMovie, File Menu>Open Library>Other... then naivgate out to the external hard drive and choose the Library you moved within the Finder.
    The new iMovie 10.x is much more friendly to use the Finder to run and gun and move stuff at will. It used to be the case the Library file had to be completely managed within iMovie and doing Finder copies would break them. Now it's more flexible in that it works the way most people used to think it should work (doing drag and drop in the Finder)

  • Mission Control Hot Methods and Events

    I have an application that runs slow from time to time. I am trying to create a flight recording to see where the issue is taking place. I would like find methods that are slow, and mainly rule out slow query response in the database tier.
    If a DAO method issues a SQL statement, which takes a while to run in the database before the results are returned to the app, which Mission Control view would show this slow behavior? Would it show in the Hot Methods view, since "Hot Methods" are ones that are called frequently and take longer to execute? I am not sure about this, since a database slowness is due to latency where the database tier is having performance issues. Do Hot Methods take into account latencies, or do they only track Java code execution time?
    If it does not show on the Hot Methods view, would it show in the "Events" view as maybe a Socket Read latency? Since the database is slow in running the query, the Socket Read may not happen till the result set is ready to be returned to the App.
    If none of the above will work, what method should be used to quickly diagnose a slow running database.
    Another related question ... after a method is determined "hot" and is optimized, will it continue to show as being "hot" in a later Flight Recording (assuming considerable time is still being spent in executing that method)?
    Any information on this is much appreciated!
    Thanks.

    Hi,
    Are you using WebLogic?
    If you are, you can turn on Flight Recorder events for WLS that track database latencies.
    See here for more information:
    http://docs.oracle.com/cd/E21764_01/web.1111/e13714/using_flightrecorder.htm
    Erik

  • I need to control flash button states within html

    I am utilizing a flash header for navigation on a site built
    in html. I need to control the button states in my flash header
    from within my html page to facilitate breadcrumbs. The header
    works in a similar manner to an expandable banner. The sub menu
    expands over the html page. However, I cannot figure out how to get
    the primary navigation buttons in the flash header to stay in the
    "hit state" so that the user knows which section of the site they
    are in.
    Can anyone point me in the right direction?
    Thanks

    You will want to use movieclips as buttons so that you can
    control what state they are in by code.
    As far as using the html to set the state, you could devise a
    scheme using FlashVars, which get designated in the embedding code
    of the html page.
    Assuming you are not using frames, and the flash is reloaded
    for each page that you navigate to, then you will have adjust the
    FlashVars code to reflect the relevant page's button.

  • Will OS X leverage Intel Turbo Boost technology when I need more CPU power?

    [Mac Air 2012 middle, 11", Core i7 2.0 GHz]
    Will OS X leverage Turbo Boost technology when I need more CPU power? And how could I know it?

    yes and you can't control it.

  • Equium A210-171 Control Panel\Hardware and Sound Missing Realtek HD Audio

    Hi,
    I was doing some updates the other night and went into msconfig,
    I think i clicked hide all microsoft services and then disabled everything or most of not sure.
    But usually when i go to Control Panel\Hardware and Sound i can see a tab to realtek hd audio
    When i click that i get another control panel/window where i have some options to change sound
    Like i had a few options where i could select to use effects like Hall, Disco, party etc
    Also installed realtek AC 97, not sure if that was needed, i cant see the realtek folders in program files though.
    It has another option to fix loudness which is handy to give volume a small boost.
    Could anyone tell me how to get realtek back in Control Panel\Hardware and Sound
    Thanks in advance

    I managed to fix it by uninstalling it from add/remove programs and then i found the drivers for my os
    Yes btw i still have the os that it came with and she runs great for a laptop i bought in 2007
    Toshiba will definitely be my next purchase though :)

  • Need help uninstalli​ng desktop and HS Mgr/Vista

    Hi,
    I have an HP Laptop that came with Vista, about 1 year old and updated to current.  I have Palm Desktop and Hotsync manager v6.2.2 installed and want to remove them completely.  There is no uninstall feature in the Palm folder, when I go to control panel/programs and features and try to uninstall that way it simple refuses to remove it....I have tried this 4/5 times.  I finally found my original install disk and no luck there either.  Can any one please help me with this issue?
    Thanks
    Post relates to: Treo 800w (Sprint)
    This question was solved.
    View Solution.

    If you look up in this very Windows Hotsync board, you will see a "stickied" thread with instructions for a clean uninstall for both Vista and XP desktops.
    Post relates to: None
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

Maybe you are looking for

  • FCP 7 Export Quicktime Movie Suddenly Stopped working

    I use FCP7 on Mavericks 10.9.2. Working in Final Cut with raw ProRes 422 footage and wanting to export my sequence as Export Quicktime Movie. Worked fine until one day it just didn't. Final Cut exports a QT file that QT opens and immediately attempts

  • ICAL - UPDATE TO 10.5.3

    *Ical trouble..* Just updated to 10.5.3 - Ical works allright on the intelbased mac but not on my PowerPC G5(not intel).. don't get it, not happy????

  • Same message type

    Hi, is it possible to use the same message types in two different BPEL processes ? If yes, could you show me an example ? thank you & bye

  • Show dates with no corresponding values

    Howdy all.... I have a report that quantifies newspaper draws by the day of the week for the purpose of giving to the delivery persons. I am trying to use a cross-tab to show the amount of papers for each location, in columns by the day of week. When

  • T code for report  designer

    Hi , Please let me know the t code for report designer. Regards siddartha