_view.setDataTemplateFocus(BackgroundFactory
.createLinearGradientBackground(Color.LIGHTBLUE,
Color.LIGHTBLUE, Color.BLUE, Color.BLUE));
final DataTemplate dataTemplate = new DataTemplate(_view, 1, 1) {
public Field[] getDataFields(final int modelRowIndex) {
final BlackBerryMemo memo =
(BlackBerryMemo) _model.getRow(modelRowIndex);
final Field[] fields =
{ new LabelField(memo
.getString(BlackBerryMemo.TITLE, 0),
Field.NON_FOCUSABLE) };
return fields;
}
};