How to put a custom for an Information window text

Hello

I saw an attribute named cutomLegendCallBack part of < dvt:mapPointTheme.

Someone can tell me the purpose of this attribute and how we use it.

Here is my requirement.

IM using point theme in my generation of card & want to display personalized information when the user clicks on some POINTS.

Generally, when clicking on a POINT an information window will be opened and displayed with some data that has been listed in the wizard.

In my case, im able to view personalized information about this information window. But inside this information window, the portion of the header is clear in reason to use this custom data view.

In fact, it used to be something like this... a blue chiputa header will be there in the header part & below that a box whitel is where information is displayed.

Because of my implementation, I see this white box & I want the blue chiputa header as well.

If someone does not have this, please me ping back.

Kind regards
Kristelle

To view a title in your infoWindow, you must do the following:

public String processEBBInfoWindowData (MapInfoCallbackObject callbackObj)
{
Chain of rowId = callbackObj.getRowId ();
String themeId = callbackObj.getThemeId ();

String outputHTML ="TestYou selected "+ rowId +"of"+ themeId +"";
Return outputHTML;
}

This will give you an infowindow with the word, 'Test' on it.

Tags: Fusion Middleware

Similar Questions

  • How to reset the password for administrator on windows server 2008 datacenter eddition before the login in vmware

    How to reset the password for administrator on windows server 2008 datacenter eddition before the login in vmware

    Post in the Windows Server Forums:
    http://social.technet.Microsoft.com/forums/en-us/category/WindowsServer/

  • How to download adobe photoshop for the PC, windows 7?

    How to download adobe photoshop for the PC, windows 7?

    kglad links in response to #1 here can help https://forums.adobe.com/thread/1930162

  • How to transfer my license for Acrobat XI Windows on my Mac?

    How to transfer my license for Acrobat XI Windows on my Mac?

    Contact Adobe. They may be able to unravel an "extension" for you. You can't buy these on the website or in stores.

  • How to create a custom for a VI help?

    Hello

    I was wondering, how can I make a custom for a vi help, I did?  I can't find anything here about this...

    Thank you!

    Hello

    Open the LabVIEW help and read the section "Documentation and impression of screws.

  • How to put a ringtone for Acer Liquid Z110?

    I can't put a ringtone for my Acer Liquid z110, how can I do?

    Hello!

    You can use apps like Ringtone Toolbox or Top Riongtone Downloader, both available for download from the Google play, customize the ringtone on the Z110.  Simply copy the ringtone file in the SD card and select one of these applications to help to set as the default ringtone.

    You can do this as often as you want and build your own ringtone collection. You can change the default ringtone in the settings > Audio profiles > General. Tap on general and select phone ringing. You should see the list of all available ringtones here and choose the one you want.

    I hope that helps!

  • How to make a custom for a Mac Mini view

    I am doing a custom view for a secondary screen for my mac mini.

    The custom to display what I'm doing on the secondary display is 1366 X 768

    My model number: A1347

    Mac Mini 2.6 / 8 GB/1 TB Fusion

    OS X El Capitan 10.11.3

    I tried to use a SwitchResX to make a custom view

    I also tried the manual control to a custom view, but nothing has worked

    The Mac is less than a week

    How your primary and secondary displays are connected to the Mini?

  • How to put PSE imported for recovery?

    I put a logo-eps imported to overprint. I do a calendar in 2 different languages and all the text and logo (eps) changes in black only. The logo is placed on a transparent background and the background must be the same, printed logo must be superimposed. But in the Panel, the overprint fill option is grayed out. With the logo in multiply also does not work...

    Setting the mode of fusion multiply should work. How do you determine that it isn't? But the best way would be to define overprints in the logos files themselves and save them as files HAVE rather EPS.

  • How to put a heading for a group of controls without line below the title text?

    Hello

    Is it possible to write a heading for a group of controls and indicators made by "chiseled online", such as the chiseled line remain invisible under the title text and remain visible everywhere else? For example, the titles 'Printer', 'Range', 'Copies' and 'Zoom' in a Microsoft Word form in the PDF file attached. Note that there is no line under the title text and there is no text box surrounding the text of the title. I want to have that kind of title for the Group of controls and indicators in a GUI of my LabVIEW application.

    Any help will be appreciated.

    Thank you.

    Javed

    Any label you use as long as you COLOR IT CORECTLY. Use the background with transparent border color... just set the boxes of color as shown.

  • How to put a password for sharing password protected?

    I would like to set up a username and password for my shared drives so I can connect to them via a cable ethernet to my other computer in my network and my SIN. for now, I have the password protected sharing off so hard drives are public access on my network which is not very safe. I don't want to set up a password to start windows because when I start my computer I want to boot directly into my office without a password.

    The user name and password for password sharing must correspond to a Windows user account.
    You can set a password for your user account and always start directly on the desktop. Thus operate netplwiz.  Highlight (click on) the account you want to log by default and uncheck "users must enter a user name and password to use this computer."

  • My touch screen blackBerry smartphones does not how to contact the customer for Filipino blackberry service

    help me get the contact number of the customer service of blackberry in the philippines

    Do a battery pull should fix your problem and prevent you having to make a phone call.  Just remove the battery while your phone is on and replace it a few seconds later.

    Let us know if that helps you.

  • How to put 2 dataProviders for 1 dataGrid?

    <mx:DataGrid x="750" y="365" id="dataGrid2"  dataProvider="{deleteCouponResult.lastResult}" width="240">
              <mx:columns>
                   <mx:DataGridColumn dataField="msg" headerText="message"/>
              </mx:columns>
         </mx:DataGrid>

    Above the data grid is used as a comments box where I fill it with messages from the operation of the database as

    'Properly inserted element', "Cannot insert the point", "Successful removal"... etc.

    At this time I can only assign a callResponder to my dataGrid, but I also want these:

              <s:CallResponder id="getAllCouponsResult"/>
              <s:CallResponder id="setCouponResult"/>
              <s:CallResponder id="insertCouponResult" />
    
    

    My first thought wat to play with the binding via actionscript but not worked code below in the second Add button clicked

    protected function addButton_clickHandler(event:MouseEvent):void
    {
         dataGrid2.dataProvider = insertCouponResult.lastResult;
         insertCouponResult.token = couponsController.insertCouponAction(coupon);
         refresh();
    }
    
    

    Thank you very much

    Using Flash Builder 4beta2 with flex 4

    Create a variable private in your component:

    [Bindable]

    private var gridData: ArrayCollection collection; or any type dataprovider that you use

    Then set this property in the result of each CallResponder event handler, for example:

    <>
    ID = "getAllCouponsResult".
    result = "gridData = ArrayCollection (event.result) collection" / > "

    Then bind your grid dataProvider to this private variable:

    dataProvider = "{gridData}.

  • How to put single quotes for attributes by default?

    Hello

    any idea? I can't find the settings of anywhere. I am using homesite 5.5.

    Thank you.

    It is not really an option for this.

    Here's some info I have on it, class in development applications you will notice:
    http://www.wilk4.com/asp4hs/priorityreqs.htm#SingleQuote

  • How to put more than 100 acquisitions to "write text file.vi?

    Hello

    I work with labview for about a week and I need help.

    I use the "write to text file.vi" in one of my screws and now I've discovered, that the number of acquisitions in this VI seems to be limited to 100.
    but I need a larger number (around 10,000). So I need to know how to increase the number.

    If you need more information, tell me and I've got the poster!

    THX
    Fr33k

    Propably the control's properties from the beach.

    Right-click on the control and select Properties. Then go to the tab of the range.

    Felix

  • How to set the password for folders in Windows XP

    Original title: I want to put the password on file. So how can I do? My operating system is windows xp professional
    I want to set the password on file. So how can I do? My operating system is windows xp professional

    Hello

    You can set the My Documents folder as "Private" in Windows XP, to so please check the link below.

    http://support.Microsoft.com/kb/298399

    To set password for files, it you will need a third party program, you can use your favorite search engine and download the third-party program.

    Note:

    Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

Maybe you are looking for

  • Securities 'Greyed' out on itunes

    A few songs on iTunes on my PC have become "grayed out" and will not transfer to my iphone. I can read on the pc and they were originally on my phone?

  • name of the iPod

    II have restored my iPod to factory settings and remove all content, but it is still called Richards iPod when I look in the settings. How to remove the name I want to sell on

  • slineline 400-034: upgrade of windows 8 for windows 8.1

    I had to reformat my hard drive.  which means that the computer is back to windows 8.   my shadow copy on my external is 8.1.  I just put on above windows 8 or should I actually go to 8.1 first.    and windows 8 a as updates.would 140 windows I put t

  • Lost my operating system XP - need a replacement drive

    The hard drive of my house died. I replaced and started to load the recovery discs for that are the bad discs. My ex had a HP compaq and it must have taken my records with his departure these instead. Needless to say, I can not activate the reload XP

  • DLL and array of pointers to incomplete struct

    I think that this has probably been dealth with before, but I tried searching and have not found an answer that solved my problem. I have a function implemented in a DLL that returns a pointer to an incomplete structure.  Everything works very well.