More than ten rooms in Room Directory?

Hi,
our Room Directory does not show more than ten rooms even though there are. (They are visible in the "My Rooms: Owner" or "My Rooms: Administrator" iView respectively.) There seems to be no way to expand the list of the Room Directory nor to change to a next page.
Is this a bug or did I miss something (configuration, etc.)?
Thanks,
Jens

Hi Jens,
this happens when you intentionally deactivate the "Use TREX" option for the Room Search.
In this case, you would need to change one parameter in several places:                                  
Open the LayoutSet "RoomDirectory". Here you will find 6 Collection
Renderers. Mofify all of them by:                                          
1. Remove the content (currently:  "this,RoomPager(alignCenter)")    
from the field "Components".                           
2. You can change the "Number of Rows" to another value.                                                                               
Then the standard pager will be used again, and you will see only the defined number of rows.
Hope this helps,
Robert

Similar Messages

  • How can I set up my mail page to show more than ten emails at a time?

    How can I set up my mail page to show more than ten emails a time?
    == This happened ==
    Every time Firefox opened
    == I first started using firefox

    There doesn't seem to be a setting in preferences to how many emails I can view at one time.

  • HT201263 Hi, I forgot the password  of my iphone4s I tried more than ten times and it lock me out with a message to connect  the iPhone with itunes on the screen but the itunes doesn't  recognise it. What can I do?

    Hi, I forgot the password  of my iphone4s I tried more than ten times and it lock me out with a message to connect  the iPhone with itunes on the screen but the itunes doesn't  recognise it. What can I do?

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device
    1. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    2. iOS- Forgotten passcode or device disabled after entering wrong passcode
    3. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    4. iOS- Understanding passcodes
    5. What to Do If You've Forgotten Your iPhone's Passcode
    6. How to Recover Forgotten iPhone Restrictions Passcode | The iPhone and iPad
    7. Restoring iPod touch after forgotten passcode
    8. RecBoot: Easy Way to Put iPhone into Recovery Mode - if all else fails.
    Forgotten Restrictions Passcode Help
    1. How to Recover Forgotten iPhone, iPad Restrictions Passcode
        If this method does not work, then you will need to fully Restore your
        device as New
    Also, see iTunes- Restoring iOS software.

  • How can I write more than 32k file in oracle directory

    Hi experts,
    I am struggling while I write more than 32k file size in oracle directory, and throws an error ‘ORA-06502: PL/SQL: numeric or value error, like this.
    This is my procedure
    declare
    l_s_filename   UTL_FILE.file_type;
    begin
       l_s_filename := UTL_FILE.fopen ('INFO_MIGRATION', 'finfinne.txt', 'W');
    FOR rec
          IN ( SELECT SQL_REDO
                  FROM V$LOGMNR_CONTENTS
                 WHERE seg_owner <> 'SYS' AND username = 'GENTEST'
                 AND TABLE_NAME NOT LIKE '%_TEMP'
                       AND OPERATION IN ('UPDATE','INSERT','DELETE')
              ORDER BY TIMESTAMP)
       LOOP
          UTL_FILE.put_line (l_s_filename, rec.SQL_REDO);
       END LOOP;
       UTL_FILE.fclose (l_s_filename);
    end;can any please help me how can I overcome this problem
    Thanks,
    Arun

    You can write by breaking it into small chunks. Also you can try to use DBMS_XSLPROCESSOR.CLOB2FILE. For UTL_FILE the code snippets may looks like
    -- Read chunks of the CLOB and write them to the file
    -- until complete.
       WHILE l_pos < l_blob_len
       LOOP
          DBMS_LOB.READ (rec.l_clob, l_amount, l_pos, l_buffer);
          UTL_FILE.put_line (l_file, l_buffer, FALSE);
          l_pos := l_pos + l_amount;
       END LOOP;

  • Unable to subtract 0.1 from a number more than ten times in a row without an inaccuracy of 0.0000000000001

    I'm using a simple formula  =SUM(D2-$B$2)
    where D2 is 100 and $B$2 is 0.1
    When I keep subtracting 0.1 from the last number there is a 0.0000000000001 error after 10 subtractions
    100
    99.90
    99.80
    99.70
    99.60
    99.50
    99.40
    99.30
    99.20
    99.10000000000010
    99.00000000000010
    98.90000000000010
    I know that can round the number but I'm using the spreadsheet to generate cartesian coordinates for a machine and I need to use more than this many decimal places accurately.
    I'm quite suprised numbers can't do this subtraction properly as my pocket calculator can manage no sweat.
    At first I thought my file was corrupted but after trying several new files and reinstalling numbers the issue persists.

    Andrew,
    The floating point processor used by Numbers calculates15 significant digits, without regard to where the decimal point falls. There can be an "error" in the last digit. If that's a problem for your purposes, you'll either have to work around it by restructuring your calculation or by resorting to an app with a more powerful math engine. For simple things like invoices, we can use the ROUND function to overcome the issue. If you actually need that much precision, you're skating on ice that's too thin with this app.
    Jerry

  • Why does the first Firefox browser takes more than ten seconds to open?

    Once my laptop is logged into, Firefox's initial browser takes more than 10 seconds to open. The subsequent windows take less than two seconds. Much more complex programmes like photoshop open in next to no time. Is Firefox a 'heavy' programme to start?
    == This happened ==
    Every time Firefox opened
    == I shifted to Firefox Windows IE two weeks ago. Eversince.

    See http://autonome.wordpress.com/2010/ for progress of work being done to improve that.40

  • Not more than 4 files in a directory .... ?????

    Hi
    Do you know how can restrict a directory only to allow 4 files ....
    I have a program in C who save image every second, and if i leave it running mayby i have to said good bye HD space, :)
    Thge point is that i want to use the output, but i only want 4 files .... not a sequence .... i mean
    cam1.bmp , cam2.bmp, .... cam9.bmp ..... cam23.bmp ...
    i neen cam1.bmp, cam2.bmp, cam3.bmp, cam4.bmp ....and cam5 is now CAM1.bmp and cam6 is cam2.bmp ...i mean delete the old one and use the new image but with the same name ......
    please ...help me .... i only need to know how or what can i use to start developing ....
    Thank you !!!
    :)

    This fixes a couple of the problems with the previous ones renameTo needs a file and I forgot some semi colons.
    import java.io.*;
    import java.util.*;
    public class CleanUp
         public static void main(String args[])
              throws IOException
              // Check arguments 
              if(args.length==0)   
                   System.out.println("Usage: java <directory with the images>"); 
              // Delete other files 
              FileFilter filter=new FileFilter() 
                   public boolean accept(File path)   
                        return (!path.getName().endsWith(".bmp"));   
              File dir=new File(args[0]); 
              File[] files=dir.listFiles(filter); 
              for(int i=0; i<files.length; i++)   
              files.delete();
              // Get list of files
              filter=new FileFilter()
                   public boolean accept(File path)
                        return (path.getName().endsWith(".bmp"));
              files=dir.listFiles(filter);
              Arrays.sort(files);
              // Check length
              if(files.length<4)
                   return;
              // Delete the older files
              for(int i=0; i<files.length-4; i++)
                   files[i].delete();
              // Rename newest files
              for(int i=files.length-4; i<files.length; i++)
                   files[i].renameTo(new File("cam"+i+".bmp"));

  • Recently purchased the movie Wolverine in HD but i cant play it on my ipad for more than ten seconds without it stopping. Can someone explain what can i do.

    Im having trouble watching a movie on my ipad and it wont play on my computer because its not HD. My ipod wont take the new movie into its drive whne i try to sync it. Is there something Im not doing.

    it is now set just 2 bars after the 15 minute mark....i'm gonna leave it here as it defaulted to this after i restarted it.  it's probably not optimal, but it'll work for now.  both slide bars have the cursor set between 15 mins and 1 hour (closer to the 15 minute mark actually).  if i have issues, i will try something different.  do you have any idea what caused this to begin with?  i didn't actually touch these preferences at all.

  • I downloaded a TV show and it won't play more than ten minutes

    when I try to click past where it stopped it keeps bouncing me back to where it stopped. helpppp

    Is your iPod configured to sync TV Shows from under its TV Shows tab in iTunes?
    Are you getting any error messages while syncing your iPod?
    B-rock

  • Return lines of no more than ten chars each

    my code is freaking out after inserting end lines & won't return my char array
    import static java.lang.System.exit;
    public class newline     
    public static void main(String[] args)
    String you_said = "SwordwordS Sword woS Srd wordsS SworS SdswordswS";
    //char[] returned_you_said=you_said.toCharArray();
    char [] returned_you_said=newline(you_said, 10);
    for(int i =0; i<returned_you_said.length; i++)
    System.out.printf("%c", returned_you_said);
    public static char[] newline(String a, int linesize)
    char [] charray = a.toCharArray();
    int l=0;
    while (charray[l]!=0)
         for(int i=l+linesize; i>=l; i--)
              if (charray[i]==' ')
                   charray[i]=10;
                   i++;
                   l=i;
                   break;
              if (i==l)
                   System.out.println("increase linesize");
                   exit (1);
    return charray;

    When you post code wrap it with code tags so we can read it.
    If you look at the box where you type in your posts, you'll see some formatting options. One is "CODE". Highlight your code and then click that.

  • Cancelling disc burn taking more than half-an-hour

    I had just burned a cd before trying to burn another one but that wouldn't finish. The one before it took less than two minutes while this next one was taking more than ten. I decided to cancel it but now it is still on the cancelling sequence and I cannot get the cd out. Any advice?

    Given that it's so new, and what you've already tried, it sounds like an issue that requires service.
    You can arrange online service here.
    Service request.

  • Can I increase the "Open Recent Files" to more than 10?

    I haven't been able to figure out how to get more than ten file options
    FILE> OPEN RECENT FILES
    I tried Preferences and searching the library.

    Settings like this one should be available in the programme preferences dialog.
    Yes, you can do a lot by editing the somewhat hidden AIPrefs file, but isn't that pretty archaic … ?

  • Any way to show more than two slides at a time on the secondary display?

    During a presentation, is there any way to show more than two slides at a time in the secondary display? Sometimes during a presentation i have to go back to a certain slide without notice (usually no more than ten slides behind or in front of the current slide)
    Thanks in advanced...

    Nope. But you can jump around easily enough. Just type in the number of the slide you want (or any number, really, because you can then use the arrow keys to scroll to the correct slide), and hit return.

  • Viewing messages older than ten days in iMessage

    Good day. I want to look back in a chat history, but when I get to messages more than ten days old iMessage stops retrieving them. My preferences are set to keep messages forever. I have an iPhone 5c with iOS 8, and I do not use iMessage on my desktop machine.
    Thanks for any insights you may have!

    Did you back your phone up?
    Also sometimes the iMessage contains a combination of text and iMessages - the text messages are not recoverable
    Did you upgrade the iOS in the last few days or reset your phone?
    http://www.macworld.co.uk/how-to/iosapps/fix-ios-imessage-problems-bug-messages- not-delivered-3470405/

  • How do I add more than 10 options to the drop down menu?

    Presently, I'm only able to give ten options but many of my items have 20-30 options.How do I add more than ten options to the drop down menu?

    BrazenChick wrote:
    Presently, I'm only able to give ten options but many of my items have 20-30 options.How do I add more than ten options to the drop down menu?
    It depends on the type of option. If each option has a separate price, then I don't know of a way to add more than 10 options since those options with the prices are encoded into the button id. (Well, you could encode the information yourself with PayPal's API, but that is way more involved than I've been willing to tackle.) If you have more than 10 options such as color, scent, etc that don't affect the price, then you can edit the code you have added to your website to add additional items in the list. For example, suppose you had options "red" and "green", the relevant part of the code would look something like this: <select name="os0">
    <option value="red">red </option>
    <option value="green">green </option></select> If you want to add the option "blue", you would insert the line : <option value="blue">blue </option> before the closing </select> tag. More than 10 options won't be saved in the PayPal button creator, but it will work just fine in your website since this type of option isn't encoded in the id.

Maybe you are looking for