V1 Component Methods and their V2 equivalents

FCheckBox
FComboBox
FDataGrid
FListBox
FPushButton
FRadioButton
FScrollbar - deprecated
FScrollPane


FCheckBox

v1

v2

FCheckBox.getEnabled()

CheckBox.enabled

FCheckBox.getLabel()

CheckBox.label

FCheckBox.getValue()

CheckBox.selected

FCheckBox.registerSkinElement()

deprecated

FCheckBox.setChangeHandler()

use click event

FCheckBox.setEnabled()

CheckBox.enabled

FCheckBox.setLabel()

CheckBox.label

FCheckBox.setLabelPlacement()

CheckBox.labelPlacement

FCheckBox.setSize()

CheckBox.setSize()

FCheckBox.setStyleProperty()

CheckBox.setStyle()

FCheckBox.setValue()

CheckBox.selected



FComboBox

v1

v2

FComboBox.addItem()

ComboBox.addItem()

FComboBox.addItemAt()

ComboBox.addItemAt()

FComboBox.getEnabled()

ComboBox.enabled

FComboBox.getItemAt()

ComboBox.getItemAt()

FComboBox.getLength()

ComboBox.length

FComboBox.getRowCount()

ComboBox.rowCount

FComboBox.getScrollPosition()

deprecated

FComboBox.getSelectedIndex()

ComboBox.selectedIndex

FComboBox.getSelectedItem()

ComboBox.selectedItem

FComboBox.getValue()

ComboBox.value

FComboBox.registerSkinElement()

deprecated

FComboBox.removeAll()

ComboBox.removeAll()

FComboBox.removeItemAt()

ComboBox.removeItemAt()

FComboBox.replaceItemAt()

ComboBox.replaceItemAt()

FComboBox.setChangeHandler()

use change event

FComboBox.setDataProvider()

ComboBox.dataProvider

FComboBox.setEditable()

ComboBox.editable

FComboBox.setEnabled()

ComboBox.enabled

FComboBox.setItemSymbol()

deprecated

FComboBox.setRowCount()

ComboBox.rowCount

FComboBox.setSelectedIndex()

ComboBox.selectedIndex

FComboBox.setSize()

ComboBox.setSize()

FComboBox.setStyleProperty()

ComboBox.setStyle()

FComboBox.setValue()

ComboBox.value

FComboBox.sortItemsBy()

ComboBox.sortItemsBy()



FDataGrid

v1

v2

FDataGrid.addColumn()

DataGrid.addColumn()

FDataGrid.addColumnAt()

DataGrid.addColumnAt()

FDataGrid.addItem()

DataGrid.addItem()

FDataGrid.addItemAt()

DataGrid.addItemAt()

FDataGrid.alternateRowColors()

DataGrid.setStyle("alternatingRowColors",[0xFF66FF,0xFF00FF]);

FDataGrid.getColumnAt()

DataGrid.getColumnAt()

FDataGrid.getColumnCount()

DataGrid.columnCount

FDataGrid.getColumnIndex()

DataGrid.getColumnIndex()

FDataGrid.getEnabled()

DataGrid.enabled

FDataGrid.getItemAt()

DataGrid.getItemAt()

FDataGrid.getLength()

DataGrid.length

FDataGrid.getOriginalCellData()

deprecated

FDataGrid.getRowCount()

DataGrid.rowCount

FDataGrid.getScrollPosition()

DataGrid.hPosition, DataGrid.vPosition

FDataGrid.getSelectedCell()

DataGrid.focusedCell

FDataGrid.getSelectedIndex()

DataGrid.selectedIndex

FDataGrid.getSelectedIndices()

DataGrid.selectedIndices

FDataGrid.getSelectedItem()

DataGrid.selectedItem

FDataGrid.getSelectedItems()

DataGrid.selectedItems

FDataGrid.removeAllColumns()

DataGrid.removeAllColumns()

FDataGrid.removeAllItems()

DataGrid.removeAll()

FDataGrid.removeColumnAt()

DataGrid.removeColumnAt()

FDataGrid.removeItemAt()

DataGrid.removeItemAt()

FDataGrid.replaceItemAt()

DataGrid.replaceItemAt()

FDataGrid.setCellData()

DataGrid.editField

FDataGrid.setChangeHandler()

use change event

FDataGrid.setColumns()

DataGrid.columnNames

FDataGrid.setDataProvider()

DataGrid.dataProvider

FDataGrid.setEditable()

DataGrid.editable

FDataGrid.setEditHandler()

use cellEdit event

FDataGrid.setEnabled()

DataGrid.enabled

FDataGrid.setResizableColumns()

DataGrid.resizableColumns

FDataGrid.setRowCount()

DataGrid.rowCount

FDataGrid.setRowHeight()

DataGrid.rowHeight

FDataGrid.setScrollPosition()

DataGrid.hPosition, DataGrid.vPosition

FDataGrid.setSelectable()

DataGrid.selectable

FDataGrid.setSelectedCell()

DataGrid.focusedCell

FDataGrid.setSelectedIndex()

DataGrid.selectedIndex

FDataGrid.setSelectedIndices()

DataGrid.selectedIndices

FDataGrid.setSelectMultiple()

DataGrid.multipleSelection

FDataGrid.setSize()

DataGrid.setSize()

FDataGrid.setSortableColumns()

DataGrid.sortableColumns

FDataGrid.setVScroll()

DataGrid.vScrollPolicy

FDataGrid.showBorder()

DataGrid.setStyle("borderStyle","none")

FDataGrid.showColumnHeaders()

DataGrid.showHeaders

FDataGrid.showGridLines()

DataGrid.setStyle("vGridLines",false), DataGrid.setStyle("hGridlines",true)

FDataGrid.sort()

DataGrid.sortItems()

FDataGrid.sortItemsBy()

DataGrid.sortItemsBy()

FDataGrid.spaceColumnsEqually()

DataGrid.spaceColumnsEqually()



FListBox

v1

v2

FListBox.addItem()

List.addItem()

FListBox.addItemAt()

List.addItemAt()

FListBox.getEnabled()

List.enabled

FListBox.getItemAt()

List.getItemAt()

FListoBox.getLength()

ListBox.length

FListBox.getRowCount()

List.rowCount

FListBox.getScrollPosition()

List.hPosition, List.vPosition

FListBox.getSelectedIndex()

List.selectedIndex

FListBox.getSelectedIndices()

List.selectedIndices

FListBox.getSelectedItem()

List.selectedItem

FListBox.getSelectedItems()

List.selectedItems

FListBox.getSelectedMultiple()

List.multipleSelection

FListBox.getValue()

List.value

FListBox.registerSkinElement()

deprecated

FListBox.removeAll()

List.removeAll()

FListBox.removeItemAt()

List.removeItemAt()

FListBox.replaceItemAt()

List.replaceItemAt()

FListBox.setAutoHideScrollBar()

List.vScrollPolicy

FListBox.setChangeHandler()

use change event

FListBox.setDataProvider()

List.dataProvider

FListBox.setEnabled()

List.enabled

FListBox.setItemSymbol()

deprecated

FListBox.setRowCount()

List.rowCount

FListBox.setScrollPosition()

List.hPosition, List.vPosition

FListBox.setSelectedIndex()

List.selectedIndex

FListBox.setSelectedIndices()

List.selectedIndices

FListBox.setSelectMultiple()

List.multipleSelection

FListBox.setSize()

List.setSize()

FListBox.setStyleProperty()

List.setStyle()

FListBox.setWidth()

deprecated

FListBox.sortItemsBy()

List.sortItemsBy()



FPushButton

v1

v2

FPushButton.getEnabled()

Button.enabled

FPushButton.getLabel()

Button.label

FPushButton.registerSkinElement()

deprecated

FPushButton.setClickHandler()

use click event

FPushButton.setEnabled()

Button.enabled

FPushButton.setLabel()

Button.label

FPushButton.setSize()

Button.setSize()

FPushButton.setStyleProperty()

Button.setStyle()



FRadioButton

v1

v2

FRadioButton.getData()

RadioButton.data

FRadioButton.getEnabled()

RadioButton.enabled

FRadioButton.getLabel()

RadioButton.label

FRadioButton.getState()

RadioButton.selected

FRadioButton.registerSkinElement()

deprecated

FRadioButton.setChangeHandler()

use click event

FRadioButton.setData()

RadioButton.data

FRadioButton.setEnabled()

RadioButton.enabled

FRadioButton.setGroupName()

RadioButton.setGroupName()

FRadioButton.setLabel()

RadioButton.label

FRadioButton.setLabelPlacement()

RadioButton.labelPlacement

FRadioButton.setSize()

RadioButton.setSize()

FRadioButton.setState()

RadioButton.selected

FRadioButton.setStyleProperty()

RadioButton.setStyle()



FScrollPane

v1

v2

FScrollPane.getPaneHeight()

deprecated

FScrollPane.getPaneWidth()

deprecated

FScrollPane.getScrollContent()

ScrollPane.content

FScrollPane.getScrollPosition()

ScrollPane.hPosition, ScrollPane.vPosition

FScrollPane.loadScrollContent()

ScrollPane.contentPath

FScrollPane.refreshPane()

ScrollPane.refreshPane()

FScrollPane.registerSkinElement()

deprecated

FScrollPane.setDragContent()

ScrollPane.scrollDrag

FScrollPane.setHScroll()

ScrollPane.hScrollPolicy

FScrollPane.setScrollContent()

ScrollPane.contentPath

FScrollPane.setScrollPosition()

ScrollPane.hPosition, ScrollPane.vPosition

FScrollPane.setSize()

ScrollPane.setSize()

FScrollPane.setStyleProperty()

ScrollPane.setStyle()

FScrollPane.setVScroll()

ScrollPane.vScrollPolicy