Announcement

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

    reserved word for ListGrid

    I designed a listgrid and set one column named "enabled", and set the value type to be boolean. I got a locked record on which the value of "enabled" column is false.

    Is this a bug?
    Are there more reserved(?) words?
    What would be a good workaround?

    #2
    You can change the property that is used for enabling and disabling records via ListGrid.recordEnabledProperty.

    Comment


      #3
      Thanks. Can you tell me, are there more reserved words?

      Comment


        #4
        Several, each of which can be renamed with a method on the ListGrid like "setRecordSomethingProperty()".

        Comment


          #5
          I can resolve such problem by these workaround for listgrid. But I find the same problem in the multiseletion of a selectItem. And it seems that there is no such kind of workaround.

          What can I do ?

          Comment


            #6
            You can customize the pick-list for SelectItems (which is a subclass of listGrid) by creating a new ListGrid instance in java, setting the desired properties, and calling the special setPickListProperties() API on the SelectItem

            Comment

            Working...
            X