problem of the lottery of the lists

Hello

I need help...

I created the list using the Cellerender class and the ICellRenderer interface. When I change device orienatation, its not the update list item mean that some elements will not refresh its layout.

You will need to go through the data provider and replace the item to return to the index for the draw/update methods be re-called with the new width. You can extend the current list class and provide a "Refresh" method that will be called when the focus event fires.

Tags: BlackBerry Developers

Similar Questions

  • Problem with the list item

    Hi all
    I am facing a problem with the list item in my form. In my form, I have a list item (tmd_stat) with 3 list of values as the item complete, incomplete and null.this lies in the control block.

    I have a block (Detail) which is the database block.status_disp [point List] is one of the .an article on the value of list tmd_stat is filling with different values.

    an alert message (you want to change the status? Yes/No) will appear when we change the list item. If I click YES then the list works and retail block point status_disp is filled with a different list of values. If I click on 'No' the list value will be set to changed value.i.e suppose that I'm changing the Complete incomplete list item, alert message will be displayed. If I click on 'No' the cursor is placed on incomplete but incomplete. How can I place the cursor on the full value.

    Can you please give me the solution.

    Thank you

    Hello

    Save the old value in a variable and then if the user clicks on No. then reassign this value to the list item.

    Kind regards

    Manu.

  • Trying to solve a problem with the list under display properties screensaver!

    When I try to put my screensaver, gout dwon displays a completely blank entry followed by (None) & the list of available screensavers.  Every time I choose (none), it is up to the last installed screen saver.

    An example: the last installed screen saver was ArcSoft Photobook screensaver.
    So, when I select (none) for no screensaver, it is up to the ArcSoft Photobook screensaver.

    This happens each & everytime I have add a new screen saver.
    (None) option always returns to the last screen saver installed.

    There are moments that I need the option screensaver set to (none).

    Any ideas on how to fix this problem would be greatly appreciated.

    Ed

    Not sure as to what I did, however, my problem with the screen saver has been fixed.

    I've been messing around with a number of things that I thought might have caused this problem.  And wala, suddenly the problem existed no more!

  • Several problem of the list selection

    Hello

    I have several element selection problem occurred in the list.  I put the mode of selection temptation but also does not work no target selected item.

    Thank you

    Smail

    Hey satish,

    Yes, the problem seems to be your cell converter class. what I did with cell converters, you must extend the CellRenderer class and not a LabelButton class. There are more features within a rendering class of cell than just implementation of the ICellRenderer class. I suspect because you have extended wrong, you are missing a feature that provides the CellRenderer class.

    Try to remove the skin you have applied and run your code and see if the list is now clickable. Good luck!

  • When I try to open the files by e-mail using firefox I get a message "there seems to be a problem loading the list of messages." Re-creation of firefox has not helped.

    When I go to email, I get the Inbox. I can't access other folders such as 'sent items' or 'spam' however and when I go back to inbox I get the same message. The problem is only with firefox - no internet explore. I tried to reset firefox and default settings without effect.

    Clear your cache and cookies (for the site concerned) to see if that makes a difference.

    Clear Cache

    1. PressCTRL/CMD + SHIFT + DELETE
    2. Select "time range to clear" at all
    3. Expand the 'details' by clicking the arrow
    4. Uncheck everything except Cache
    5. Click clear now

    Clear Cookies

    1. Go to the orange Firefox button > Options > privacy > delete individual cookies
    2. Search the site that you are having problems with, then click on Delete Cookies
    3. Restart Firefox and try again
  • Problems with the list of the button and drop-down list

    Hello

    I want my users to view revenue by country or city...

    to select country I use a "list of the button' and for the city I'm on a 'combo '... When my select user a country, the cities of filtered accordingly... everything works fine, except the following (it is in step 3):

    Step 1. When I select a country (let's say canada) report gives me an appropriate set of data...
    Step 2. When I filter in a city (let's say Toronto) everyting works very well according to the filter...
    Step 3. When I select another country (let's say the USA), I get no data displayed on my report but good news, it's that my drop down the city will update accordingly
    Step 4. to get the required data, I have to change city (let's say Chicago)...


    what I want is that when my user select another country (step 3)... then the report should display data for all cities and I used the logical

    Select rev table_country
    where
    (b.City =
    CASE
    When: P49_CITY = 'ALL' THEN b.City
    OTHERWISE: P49_CITY END)

    somehow, I want the P49_CITY to 'ALL' value when the user selects a country

    Please advice

    Hello

    This is the way of simply to do.

    1 make the country select list (P49_COUNTRY) a select list with submit
    2. create a conditional branch that dates back to the 49 Page
    3 do the conditional branch of type PL/SQL Expression. In the expression 1 enter

    :REQUEST = 'P49_COUNTRY';
    

    4. in the value of these items , enter P49_CITY and let these values in white.

    So when the country is changed the page will be submitted, take over the management of the status of the page and in the process put the city at null.

    Kind regards

  • Problem using the list separated by commas with nested table element

    Hello

    I have a list separated by commas like this:
    H23004,H24005,T7231,T8231,T9231
    And want to create a function that creates a where clause clause for each element with an output like this:
    UPPER('H23004') IN (UPPER(charge))
    OR UPPER('H23005') IN (UPPER(charge))
    OR UPPER('T7231') IN (UPPER(charge))
    OR UPPER('T8231') IN (UPPER(charge))
    OR UPPER('T9231') IN (UPPER(charge))
    Here's my test function that is not working properly:
    create or replace function FNC_LIST_TO_WHERE_CLAUSE(v_list in VARCHAR2) return varchar2 is
     -- declaration of list type
     TYPE batch_type IS TABLE OF pr_stamm.charge%TYPE;
     -- variable for Batches
     v_batch batch_type := batch_type('''' || replace(v_list,',',''',''') || '''');
     return_script varchar2(1000);
    
     BEGIN
     -- loop as long as there are objects left
     FOR i IN v_batch.FIRST .. v_batch.LAST
     LOOP
       --DBMS_OUTPUT.PUT_LINE(offices(i));
       -- create where clause
       IF i = 1 THEN
         return_script := 'UPPER(' || v_batch(i) || ') IN (UPPER(charge))';
       ELSE
         return_script := return_script || ' OR UPPER(' || v_batch(i) || ') IN (UPPER(charge))';
       END IF;
     END LOOP;
    
     return (return_script);
     end;
    The out put looks like this:
    UPPER('H23004','H24005','T7231','T8231','T9231') IN (UPPER(charge))
    I don't know what I did wrong? It calculates the amount of the incorrect array element! (v_batch. Must be 5)
    v_batch. FIRST = 1
    v_batch. LAST = 1

    Kind regards

    Tobias

    Try this...

    declare
    text varchar2 (1000): = "H23004, H24005, T7231, T8231, T9231;
    v_where varchar2 (1000);
    Start
    Text: = text | «, » ;
    While instr (text, ',') <> 0
    loop
    v_where: = v_where | ' UPPER ("': substr (Text, 1, InStr(Text,',',1)-1) |") ' IN (UPPER (load)) OR ';
    text: = substr (text, instr(text,',',1) + 1);
    end loop;
    v_where: = substr (v_where, 1, length (v_where)-3);
    dbms_output.put_line (v_where);
    end;

    convert it to function...

  • Problem with the mobile Flex list control

    Hello world.

    I have a problem with the list control in Flex mobile.  I need create list in "Flex mobile" and I need that list items must have following structure. a single image, text and then another picture. How do I do this?

    Concerning

    Include a component with a custom converter.

    See the documentation for Flex: http://help.adobe.com/en_US/flex/using/WS03d33b8076db57b9-23c04461124bbeca597-8000.html for more details.

  • The data in the list scrolling

    Hello world

    I use the normal list in my app, bt the problem is that the width of the list item.

    I have no problem with the list in landscape bt from potrait extra mode "".. "". are coming instead of data,

    Is it possible to scroll through the data in the list, (average is the width exceed then automatically the data in the list will scroll,)

    someone can help me. urgnt iam waitng...

    Thanks in advance

    I found the solution which equavalent to scroll.

    I'm overiding method of label in the cell renderer class and applying the marquee event it is great it possible to scroll.

  • BlackBerry smartphones can not see the list of the entire message when I opened the messages icon.

    I used to be able to see a combined list of my emails, texts SMS, missed calls, voice messages and anything else when I open Message folder icon on my Blackberry Curve 8330 office, but now when I open it, all I get is a blank white screen.  When I hit the menu button, the menu appears without a problem and if I click on the trackball, it will open a message, but I do not see the list itself.

    Also, when I go to view the folder I can access an individual folder and they come very well.  The only problem is the list of the combined messages that you are supposed to get when you open the icon on the desktop (or the application menu).

    Could someone help me please

    First thing... do a reboot simple: with the BlackBerry device powered on, remove the battery a few seconds and then reinsert the battery to restart.

    Now, that is the visible screen?

  • How to get the value of the list item

    Hi all
    How to get the value of the list item?

    I have a problem with the list item object
    in Oracle Forms.
    How can I retrieve the selected item from
    a list?
    I have not found any function as ' list. GET_
    SELECTED_ITEM()'...



    Thank you
    Bala

    Hello

    You get the value as any other element of forms:

    :value := :block.list_tem ;
    

    François

  • Necessary to set the height and width of the image of itemRenderer for virtualization of the list

    Hello

    By default the spark list supports virtualization (which is cool), but I came across a problem with the list create all of the itemrenderers even when useVirtualization is set to true. After some debugging and the samples I made, it became clear he did not define the width and height on the image within the itemRenderer.

    Is this a bug or an expected behavior?

    
    
    
    
    <?xml version="1.0" encoding="utf-8"?>
    <s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009" 
                        xmlns:s="library://ns.adobe.com/flex/spark" 
                        xmlns:mx="library://ns.adobe.com/flex/mx" 
                        autoDrawBackground="true" useHandCursor="true" mouseChildren="false" creationComplete="itemrenderer1_creationCompleteHandler(event)">
         <fx:Script>
              <![CDATA[
                   import mx.events.FlexEvent;
    
                   protected function itemrenderer1_creationCompleteHandler(event:FlexEvent):void
                   {
                        trace("created " + this.data);
                   }
    
              ]]>
         </fx:Script>
         
         <!-- Without setting a specific height it will not work in virtualization! -->
         
         <mx:Image height="187" width="280" source="{data}" />
         
    </s:ItemRenderer>
    
    

    https://bugs.Adobe.com/jira/browse/SDK-23621

  • When you save the playlist, error - "Windows Media Player has encountered a problem during the creation or recording of the reading list.".

    When I try to save a playlist, I get an error message "Windows Media Player has encountered a problem during the creation or recording of the reading list.".

    Hello

    • Will there be any changes made prior to this issue?
    • What version of Windows are you using?

    Step 1: I recommend to run the Windows Media Player settings Troubleshooter and check.

    http://Windows.Microsoft.com/en-us/Windows7/open-the-Windows-Media-Player-settings-Troubleshooter

    Step 2: If the problem is to uninstall and reinstall Windows Media Player. Here's how.

    Uninstalling and reinstalling Windows Media Player:

    (A) uninstall Windows Media Player:

    a. go to start and in the search type 'Turn Windows has or not'.

    b. click on "Turn Windows features on or off".

    c. find multimedia and uncheck the brand in the face of Windows Media Player.

    d. restart the computer

    (B) reinstall Windows Media Player:

    a. go to start and in the search type 'Turn Windows has or not'.

    b. click on "Turn Windows features on or off".

    c. find the multimedia functions and place a check mark in front of the Windows Media Player.

    d. restart the computer.

    For more information, see the article below:

    http://Windows.Microsoft.com/en-us/Windows7/turn-Windows-features-on-or-off

  • I also, I get the error "the service user profile Service has no connection, failed to load the user profile" but I have not been able to correct the problem by following the listed solutions.

    I got the error "the service user profile Service has no connection, failed to load the user profile" when you try to use my desktip.  It is on the login page.  My account icon loads and the guest account. I have enter my password as an administrator and get the error message listed above. I followed all the solutions I could find and it is not corrected.

    I have a slight hitch, after several failed here, I checked the domestic Group on my laptop and I have high listed as connected to the Group Home Office; with all the files.  How can I fix the desk top to coinside with his status of being online.  Yet once, my counter top will not recognize the password, but the desk top shows online in the home group.

    Home Group is Windows 7.

    Here is the Vista Forums.

    What operating system do you use?

    Vista info below:

    ·                        Restore point:

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    If the above does not work:

    ·                        http://www.Vistax64.com/tutorials/130095-user-profile-service-failed-logon-user-profile-cannot-loaded.html

    See if the information in the above tutorial will help you.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://windowshelp.Microsoft.com/Windows/en-AU/help/769495bf-035C-4764-A538-c9b05c22001e1033.mspx

    Difficulty of a corrupted user profile

    After creating the profile, you can copy the files from the existing profile. You must have at least three user accounts on the computer to perform these operations, including the new account that you created.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

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

    A temporary profile is loaded after you connect to a Windows Vista-based system

    See you soon.

    Mick Murphy - Microsoft partner

  • My problem is: the photos are listed in descending order. I need them in ascending order.

    * Original title: Photo Arrangement

    I have a real problem with my understanding of photo.

    I am producing a slideshow on my travels in Asia over the period 2008-2015.

    All the photos are in individual folders by year. I also arranged their by the date.

    My problem is: the photos are listed in descending order.  I need them in increasing order - first photo of the last picture taken on a given date. Otherwise, I can't import individual files in my photoshow software because it displays the last picture taken 1.

    I can't find a link or an option to have this way.

    Does anyone know how to get the arranged in ascending order?

    Sunday, July 5, 2015, 13:51:46 + 0000, boongsongum wrote:

    I have a real problem with my understanding of photo.

    I am producing a slideshow on my travels in Asia over the period 2008-2015.

    All the photos are in individual folders by year. I also arranged their by the date.

    My problem is: the photos are listed in descending order.  I need them in increasing order - first photo of the last picture taken on a given date.

    With photos or anything else:

    You can sort the files in a folder by clicking on the header of the
    field you want to sort, such as the Date.

    You can reverse the sort order, down to bottom-up,
    or vice versa, by clicking on the header a second time.

Maybe you are looking for