HIDE, GETCURSOR , DOUBLECLICK EVENT

HI TO ALL,
1) EXPLAIN ABOUT HIDE KEYWORD, GET CURSOR AND DOUBLE CLICK EVENT?
2) EXPLAIN ABOUT ALV REPORTS USING CLASS METHODS?
REGARDS,
VENKAT.

Hi Venkat,
if you haven't done yet please visit following link. It descibes the ALV Object Model:
http://help.sap.com/saphelp_erp2005vp/helpdata/en/5e/88d440e14f8431e10000000a1550b0/frameset.htm
Regards
Bernd

Similar Messages

  • Onclick and doubleclick event not working in CC

    hi..  onclick and doubleclick event not working in CC..  how to get these events to work?
    Please advise anyone. Thanks alot!

    Is your event target a ListBox?
    In that case there are serious issues to deal with:
    http://indiscripts.com/blog/public/ScriptUIEvents.pdf
    @+
    Marc

  • Adding a doubleclick event on Inline Graphic Image

    Hello all,
    I'm trying to add a doubleClickEvent to an
    InlineGraphicElement, so that a popup window appears, and I can
    enter a new width and height. I'm having trouble adding a listener
    for the doubleClick event to an image that I'm about to add as an
    Inline Graphic Element. 1. Before or after I'm inserting the image
    with insertInlineGraphic(source,width,height), how can I add a
    double click event listener? 2. Once I get a doubleclick mouse
    event working, how again can I access the selected or doubleclicked
    image so I can modify width and height attributes?
    Thanks so much for the help!
    Justin

    Thanks so much for the reply on this. I finally figured out
    what you meant. I managed to capture double clicks in the canvas
    but the canvas won't register events on inline graphic elements
    (they seem to be blocking the canvas), and in addition I can't
    access the eventmirror, so I can't add a listener directly to an
    inline graphic element. So I'm not quite sure what the best way to
    handle this is.
    Justin

  • How to avoid doubleclick event on a datagrid scrollbars?

    Hello.
    I've a datagrid.
    I need a doubleclick event cliccking on a data grid row.
    I've enabled the doubleclick event. It works fine, when the user doubleclicks on a row, an event happens! In my case I open a modal window. Great!
    Now the problem:
    The problem arises when the user clicks in a short time on a data grid scroll bar (both horizontal or vertical). In this case a double click event is dispatched.
    But his intenton is just to scroll the grid, no more.
    Please, notice that the dobule click on a scrollbar is a well-known action that can be performed in all the applications and operating systems.
    I neet the "double click" event just on a data grid rows and not on its scrollbars. Cliccking twice or more on the scrollbar I just want to scroll the grid. How can avoid to dispatch an event?
    Thank you
    Pbesi

    I was returning today to add something about custom item renderers but you beat me to it, Pbesi.   I have a custom gridItemRenderer which I now have to check for just as you demonstrated above.  What I don't understand is why I can't just do this:
    if( event.target is IGridItemRenderer )  //Should be true for both default and custom
    My custom renderer implements the IGridItemRenderer interface, but when I double click one in the grid, the event.target is not myCustomGridItemRenderer, it is GridLayer.  So what I have to do is this:
    if( (event.target is IGridItemRenderer) || (event.target is GridLayer) )
    I presume this would work for all custom gridItemRenderers, but I only have one, so I haven't tested this.  Any idea why GridLayer is the type of the event target?  My custom renderer is very simple.  It just renders Booleans as "Yes/No" rather than "True/False"
    <s:GridItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx"
          clipAndEnableScrolling="true"
          implements="spark.components.gridClasses.IGridItemRenderer">
          <fx:Script>
               <![CDATA[
                    override public function prepare(hasBeenRecycled:Boolean):void {
                         lblData.text = (data[column.dataField] == true) ? "Yes" : "No" ;
                                  ]]>
         </fx:Script>
          <s:Label id="lblData" top="9" left="7"/>
    </s:GridItemRenderer>

  • No Response from DoubleClick Event on a DataGrid

    I have a DataGrid, where I've set the doubleClick action to
    initiate an openWindow function, but when I compile and run the
    application it seems to ignore the event. I tried setting the click
    action to initiate the function, and it works exactly as expected.
    According to the docs, DataGrid supports the doubleClick event, so
    I'm not sure what the problem is. Anyone else seen this behaviour,
    or else can someone confirm that doubleClick works on
    DataGrids?

    Lol. That worked, thanks. I'm shaking my head as to 1) why
    that option even exists, and 2) if it does need to exist, why the
    default isn't 'true' to begin with. Well, whatever. It works now,
    and that's what I really needed. :-)

  • HIde button on events

    Hi,
    Can some body elaborate how to hide buttons on events.
    Regards
    Sameer

    Hi,
    You can use PPR.
    Step 1. create a VO which contains one transient attribute of type boolean
    Step 2. Base button rendered property using SPEL
    Step 3. Initialize your VO for PPR(inintialization includes insertion of one row and set the attribute as True)
    Step 4. In the event handler where you want to hide button just set it false.
    Sample code:
    //Code to hide button
    public void handlePoApproveChangeEvent()
    // Get the special, single-row application properties and make the first
    // (only) row current.
    OAViewObject vo = (OAViewObject)findViewObject("SampleBrowserPVO1");
    OARow row = (OARow)vo.first();
    // Get the value of the view object attribute with the PO Approval
    // status.
    OAViewObject poVO = (OAViewObject)findViewObject("PurchaseOrderHeadersVO1");
    OARow poRow = (OARow)poVO.getCurrentRow();
    String status = (String)poRow.getAttribute("StatusCode");
    // Set the application property values based on the PO Approval
    // status value.
    if ("APPROVED".equals(status))
    row.setAttribute("HideButton", Boolean.FLASE);
    //Code to initialize VO
    public void initializePPRExamplePage()
    // Create purchase order header
    OAViewObject appPropsVO =
    (OAViewObject)findViewObject("SampleBrowserPVO1");
    if (appPropsVO != null)
    // If the VO already has a row, skip its initialization. Note that
    // calling getFetchedRowCount() won't perform a DB hit on a VO with
    // no SELECT and only transient attributes.
    if (appPropsVO.getFetchedRowCount() == 0)
    // Setting the match fetch size to 0 for an in-memory VO
    // prevents it from trying to query rows.
    // Calling executeQuery() is a small workaround to a known
    // BC4J issue that ensures that modified rows in this
    // transient view object are not lost after commit. See
    // View Objects in Detail for additional information about
    // both of these calls.
    appPropsVO.setMaxFetchSize(0);
    appPropsVO.executeQuery();
    // You must create and insert a row in the VO before you can start
    // setting properties.
    Row row = appProposVO.createRow();
    appPropsVO.insertRow(row);
    // Set the primary key value for this single-row VO.
    row = (OARow)appPropsVO.first();
    row.setAttribute("RowKey", new Number(1));
    row.setAttribute("HideButton",Boolean.TRUE);
    // Initialize the application properties VO (and the UI) based on the
    // default PO approval value set on the underlying object.
    handlePoApproveChangeEvent();
    else
    // throw exception
    } // end initializePPRExamplePage()
    SPEL Parameter:
    ${oa.myVOName.HideButton}
    Hope this help, Please refer JDeveloper guide for Topic Dynamic User Interface.
    Regards,
    Reetesh Sharma

  • ALV Grid-- "DOUBLECLICK EVENT" doesnt work with "DATA_CHANGED_FINISHED" ??

    Hello at all,
    i have an ALV-Grid with 2 different Events.
    .....First Event: "Doubleclick"
    Second Event: "data_changed_finished"
    If i click to a column than it should be trigger the Doubleclick Event.
    And if i write some text in the column and "Press" Enter than it should be trigger the Event data_changed_finished.
    But the Problem is:
    If i click double to any column it will allways trigger the Event datachanged_finished_
    But if i replace the Event data_changed_finished with Event data_change, than it will be work.
    What can I do to resolve the Problem??
    Please give me some ideas, what i can do!!!
    With kind regards
    Ersin

    Hi,
    Try to do SET HANDLER first for Hanld_Double_Click Event then Handle Data Changed
    Thanks,
    Pramod

  • How to process DoubleClick event on JTextField?

    how to process DoubleClick event on JTextField?

    add a mouse listener that listens for mouse clicked and you can get the click count from the event...

  • Registering for both Click and DoubleClick events!

    I have a situation that forces me to register for both the Click and the
    DoubleClick events on a Panel widget. But I was surprised to see a weird
    behavior that it ignores the double click event and treats that as a
    single click.
    Can someone help me to resolve this issue. Thank you very much in
    advance! Here is the sample code that goes in my Event Handler:
    when self.MainPanel.ChildDoubleClick(SelectedWidget = child) do
    if SelectedWidget.IsA(Panel) then
    self.Window.MessageDialog('Double click event');
    // Never comes inside this block!
    end if;
    when self.MainPanel.ChildClick(SelectedWidget = child) do
    if SelectedWidget.IsA(Panel) then
    self.Window.MessageDialog('Click event');
    end if;
    Regards,
    Alaiah Chandrashekar
    Indus Consultancy Services, Inc.

    Try including the following line of code ahead of all of that...
    stage.doubleClickEnabled = true;
    The default value is false, which is why you don't automatically get the double click working.

  • Can't hide a particular event using Event Manager X?

    I got Event Manager X yesterday to save the hassle of hiding Events manually.
    It appears to work OK but I have one Event which I just cannot hide.
    I deselect it, click the Move button and when FCP X reopens it's still there in the Event Library and it's still selected in Event Manager X.
    Has anyone else experienced this?

    Problem solved!
    It appears that I had an identically named Event already in the "hidden" folder.
    Once I altered its name I was able to hide it.
    My only puzzle now is how I created 2 identical events in the first place.

  • How to hide projects and events in final cut prox

    Hi I am wondering how i can hide my projects and events in final cut pro x and  use them when i want it.
    Any help  appreciated. thanks very much in advance.

    Very convenient,  widely appreciated:
    http://assistedediting.intelligentassistance.com/EventManagerX/
    an excellent 5$ investment!
    Plan B) for free:
    In Finder, you could drag the not-needed Events/Projects to some other location (e.g. same drive, a folder called 'Events-hidden'. When you bring it back, it could be, you have to tell FCPX to re-connect… less convenient as the ProjectManager, but optional.

  • Hide Glitch in Events: How do I unhide a Hidden Event?

    I have a series of pictures that I wanted to hide, so I put them all into one event. I then selected ALL the pictures inside that event and clicked the Hide button. Because I selected every picture, the event itself is also hidden. Now, I cannot figure out how to unhide those pictures.
    Under normal circumstances, you would select the event that contains the pictures you want to unhide. However, since I hid every single picture inside the event. The event itself is no longer visible and I cannot figure out a way to restore those pictures. Any help would be greatly appreciated.

    SaddleSC:
    Welcome to the Apple Discussions. Have you tried the toggling the View->Hidden Photos menu option. That should let the hidden photos, including the hidden event, be seen so you can unhide them. If that doesn't bring them into view you might try rebuilding the library as follows: launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select the first three options.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • How can I hide a single event in iCal?

    I'd like to be able to mark the occasional event in iCal private, or hidden from view, but everything else visible. Is this possible?

    I agree, I can post a calendar from Outlook 2007 to my corporate iCal Server marking items as private and thus anyone subscribing to my calendar won't see what the appointment is - only that I have something in my schedule. It'd be something awesome if the Apple iCal could be able to do the same thing.

  • "Hide" a preSign event for Reader version 8

    Hi all,
    I'm using the preSign event for my form, and for some different reasons those forms will be open with Adobe Reader 8 or 9.
    As the preSign is not compatible with the version 8, is it possible to "deactivate" the presign event if the user has the version 8 of the Reader?
    It's really a particular case, because the form must be compatible with version 8 and 9 of Reader, except for my preSign treatment: this one can be ignored if the version used is the 8.
    Thanks in advance,

    Hi,
    If you wrap your script in the preSign event in an if statement, which first checks the application version.
    if (app.viewerVersion >= 9)
         //your script here
    If the user has Reader 8 then the script will not run.
    If you are going to have an alternative approach in a different event for users with Reader 8, then a similar approach would work in that different event:
    if (app.viewerVersion < 9)
         //your alternative script here
    Hope that helps,
    Niall

  • Mouse DoubleClick Event wont register

    I have extended the Panel class and added an event listener
    (MouseEvent.DOUBLE_CLICK) to the titleBar but I can not get it to
    fire. I've tried other mouse events like CLICK, MOUSE_DOWN, and
    MOUSE_OVER and they all will fire as expected. But when I try to
    use DOUBLE_CLICK it wont fire.
    Is it a bug? or is it due to some other reason, like the
    double click doesnt go through and 2 single clicks go?
    Any help would be appreciated, thanks.
    Art
    ----------------------------- Example of code
    override protected function createChildren():void
    super.createChildren();
    this.myTitleBar = super.titleBar;
    this.myTitleBar.addEventListener(MouseEvent.DOUBLE_CLICK,
    myTitleBar_mouseDoubleClickHandler);
    }

    Hi,
    try to use
    override protected function createChildren():void
    super.createChildren();
    this.myTitleBar = super.titleBar;
    this.myTitleBar.doubleClickEnabled = true;
    this.myTitleBar.addEventListener(MouseEvent.DOUBLE_CLICK,
    myTitleBar_mouseDoubleClickHandler);
    best regards,
    kcell

Maybe you are looking for

  • ITunes 10.5 64 bit wont install on windows 7- solutions?

    I had no problem in the past, until when it asked me to upgrade to iOS5, but every time I tried to install it an error would occur. So, I deleted iTunes and tred to re-install it... And I kept on recieving an error message (picture attached) Searched

  • Since I upgraded to Mavericks, Photoshop CS5 crashes when I try to print.

    Since I upgraded to Mavericks, Photoshop CS5 crashes when I try to print.

  • Iphoto - restoring events/albums

    I am using OSX 10.6.8 and Iphoto 11 9.2.1. It was not responding so I did the alt and create new album thing - its works now. But I have nothing in it. How do I restore all my events/ albums and slideshows??? I found iphoto in time machine and tried

  • Document Numbering

    Hi All I am trying to create a different numbering  series in outgoing payment.In  the primary series the first num and next num is 1.In the new series (CD) i am giving 1 for both first and next number and in period indicator i am selecting default a

  • App installation in 8.1

    My laptop was recently updated to 8.1, and applications from the store won't download. It simply says "Pending" under each app, but the process never starts. I have waited approximately 20 hours for progress to be made, and I haven't seen any. Additi