B4J Question Access to 'extended' properties

Kiffi

Well-Known Member
Licensed User
Longtime User
Hello,

is it possible to access the 'extended' properties of an object shown in the debug-view (see attached screenshot)?

Thanks in advance & Greetings ... Peter
 

Attachments

  • 2014-05-21_102121.png
    2014-05-21_102121.png
    15.5 KB · Views: 203

Kiffi

Well-Known Member
Licensed User
Longtime User
Which one do you want to access?

all of them. :D

In the meantime i figured out, that i can access the properties with JavaObject & Reflection

B4X:
' determine if the first column is sortable
Dim JO As JavaObject
JO = myNode
JO = JO.RunMethod("getColumns", Null)
JO = JO.RunMethod("get", Array As Object(0))
JO = JO.RunMethod("isSortable", Null)

I think, this is OK for me.

Thanks & Greetings ... Peter
 
Upvote 0
Top