0

I am struggeling for quite some time now because I want to implement a SDWheel control in my App. The problem is that it isn't being assigned when trying to use it with Attributes (works fine with "Values" and "Range" though).

However, I can use "Dynamic ComboBox" with the very same configuration.

enter image description here

Do you have any ideia on what the problem is?

matiash
  • 54,791
  • 16
  • 125
  • 154
Jaime
  • 159
  • 2
  • 10

1 Answers1

1

Wheel control can be used only for Numeric, Date, Datetime or Enumated types. Perhaps you're trying to use it for a Character data type.

Further information at: http://wiki.genexus.com/commwiki/servlet/hwikibypageid?20180

chiwangc
  • 3,566
  • 16
  • 26
  • 32
Guscarr
  • 394
  • 1
  • 7
  • The layout variable "&var" is actually "Numeric(4.0)". The value attribute "id" is also "Numeric(4.0)". Only the the description attribute "valor" is a varchar (and they are both in the same transaction). – Jaime Dec 11 '14 at 10:07
  • I also tried to use DataSource from a Data Provider (as a workaround) but it didn't solve the problem either. – Jaime Dec 11 '14 at 10:14
  • Jaime, you're right. Attribute and DataProvider as Data Source are not implemented for Android platform yet. For Android only Range and Values are supported. For iOS all the values as Data Source are implemented. I apologize. – Guscarr Dec 12 '14 at 18:11