07-16-2008 11:56 AM
Quote from the previous forum:
|
| ||||||
| Does RichTextField support more than one color? How is it done? Thanks | |||||||
The RichTextField does not support nativly support this. Please see the following links for more information.
How To - Format text in a RichTextField
Article Number: DB-00124
http://www.blackberry.com/knowledgecenterpublic/li
How To - Change the text color of a field
Article Number: DB-00114
http://www.blackberry.com/knowledgecenterpublic/li
07-31-2008 05:07 AM
Thanks for repply,
i tried this...but it is not helped me.
I have added ListField and i have added the data also... data is soo lengthy... so i am unable to see all the data...
i am able to see vertical scrole bar automatically, as per above url, i have added the horizantal scrole also...
but it is not working...
please find the below code.
public SearchResultsScreen(String sessionID,CaseInfo[] resultsList)
{
super();
LabelField title = new LabelField("Search Results...",LabelField.ELLIPSIS|LabelField.USE_ALL
setTitle(title);
HorizontalFieldManager hfm = new HorizontalFieldManager(Manager.HORIZONTAL_SCROLL | Manager.NO_HORIZONTAL_SCROLLBAR);
ListField myList = new ListField();
ListCallback myCallback = new ListCallback();
myList.setCallback(myCallback);
List = new Info[resultsList.length];
for(int i=0;i<resultsList.length;i++)
{
Info = (Info)resultsList[i];
myList.insert(i);
myCallback.insert(Info.getCaseId()+ "-" + Info.getTitle(), i);
List[i] = resultsList[i];
}
hfm.add(myList);
add(hfm);
}
Please let me know...what else i need to do for this...?
Thanks in Advance
07-31-2008 05:37 AM