Hi am using 3.1.3.GA sdk, Alloys and 2.3.3 Android Emulator. I am using a TableView and whenever it is drawn am getting this error,
[ERROR][dalvikvm( 9798)] Could not find class 'ti.modules.titanium.ui.widget.searchview.TiUISearchView', referenced from method ti.modules.titanium.ui.widget.TiUITableView.processPropertiesAnd my code
<TableView id="tableview" className='dataRows' > <TableViewSection id="slidingSection"> <TableViewRow> <ImageView id="option1"/> <Label>option1</Label> </TableViewRow> <TableViewRow> <ImageView id="option2"/> <Label>option2</Label> </TableViewRow> <TableViewRow> <ImageView id="option3"/> <Label>option3</Label> </TableViewRow> <TableViewRow> <ImageView id="option4"/> <Label>option4</Label> </TableViewRow> <TableViewRow> <ImageView id="option5"/> <Label>option5</Label> </TableViewRow> <TableViewRow> <ImageView id="option6"/> <Label>option6</Label> </TableViewRow> </TableViewSection> </TableView>How to get rid of this error. In another module I also added searchview to my tableview, even that too throwing same error.