Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ComboBoxItem and fetched size

    Hallo,
    i'm use the ComboBox with setOptionDataSource(myDS)

    How can i set the fetched size on ComboBoxItem?

    thx.

    #2
    Could pass additional DSRequest parameters to define the start and end row.

    Comment


      #3
      Wich kind of Parameter, can you give me an example?
      thx.

      Comment


        #4
        Originally posted by unkis
        Wich kind of Parameter, can you give me an example?
        thx.
        Something like this:

        Code:
        
        
        int start=0;
        int end=200;
        
        DSRequest dsRequest = new DSRequest();
        dsRequest.setStartRow(start);
        dsRequest.setEndRow(end);
        
        dsRequest.setOperationType(DSOperationType.FETCH);

        Comment

        Working...
        X