Tagged Questions
The listfield tag has no wiki summary.
7
votes
2answers
9k views
How to customize a list field in blackberry?
I want to customize a listfield in blackberry which would be able to list an image and text in a row. Can anyone tell me how to accomplish this with code?
5
votes
4answers
15k views
BlackBerry - Add items to a ListField
Can someone please give me a simple example on how to add three rows to a ListField so that the list shows something like this?
Item 1
Item 2
Item 3
I just want to show a list in which the user ...
3
votes
3answers
1k views
Django-nonrel form field for ListField
I'm experimenting with django-nonrel on appengine and trying to use a djangotoolbox.fields.ListField to implement a many-to-many relation. As I read in the documentation a ListField is something that ...
3
votes
2answers
602 views
Blackberry: why is drawListRow() called with different y for ListField and KeywordFilterField
I'm trying to move an app from using a KeywordFilterField to ListField and I'm struggling since several hours to find out, why is drawListRow() called with different y values - depending on which of ...
2
votes
2answers
72 views
index not update in drawListRow method
i m working with Listfield in os 5.0 and letter.my all data comes from webservice and display it in listfield .. everything work fine at first time during parsing time and display in listfield ...
2
votes
1answer
118 views
Blackberry ListField Selection Help (not getSelectedIndex() Related)
I have a list field that I am using to display a list of categories, these categories have sub categories. I need to navigate the top level categories using the ListField. So when user selects ...
2
votes
1answer
974 views
Blackberry Listfield with variable height for each row?
I need to implement custom ListField which has height variable for every each row.
Selected row should has different height then other rows.
2
votes
1answer
627 views
BlackBerry - List with checkbox along with search criteria
I am trying to display a list of data with checkboxes, where user can select multiple items at one time...
I want a search field on top of the list which will search through the list...
How do I do ...
2
votes
3answers
5k views
Blackberry - How to implement ListField Smooth Scrolling?
Overview
I'm using a listfield class to display a set of information vertically. Each row of that listfield takes up 2/5th's of the screen height.
As such, when scrolling to the next item (especially ...
1
vote
1answer
38 views
How to make a list of editfields in Black Berry?
I want to create a BlackBerry screen with a list of thousands of editable fields. Please give me some ideas of how to do this efficiently.
1
vote
1answer
78 views
listfield in tabs blackberry
I have a Mainscreen with tabs. Each tab has its own overridden navigationClick method that looks like this
protected boolean navigationClick(int status, int time) {
fieldChangeNotify(1);
...
1
vote
2answers
65 views
How to restrict the scroll to ListField itself instead of scrolling the whole screen in Blackberry
I have implemented a customized ListField with some LabelFields. Here is the screenshot.
The problem is when I scroll the ListField, the whole scroll getting scrolled. Like this Screenshot..
I ...
1
vote
1answer
133 views
Django-nonrel listfield lookup on mongedb
From the below example on mongodb, what would be preferred way for lookup:
from djangotoolbox.fields import ListField, EmbeddedModelField
class Post(models.Model):
...
comments = ...
1
vote
3answers
106 views
How to Increase the row height of the selected item of listfield
I am using a ListField for my app to show the data in a list. Now my requirement is that i want to increase the row height of the selected item of the list.
For this, i created a GridFieldManager and ...
1
vote
2answers
191 views
Blackberry Java: Removing a ListField after it was clicked on, strange behaviour
I have an application that makes use of the ListField component. As items are clicked on in the ListField, I remove the ListField from the manager and add in other managers.
My problem is that the ...
1
vote
2answers
439 views
Blackberry: how to filter rows represented by a ListField?
I'm trying to create an app displaying few extra rows on the top of a list of items with a "live search" field on the top:
Of course I've tried using a KeywordFilterField with overriden setSize() ...
1
vote
0answers
378 views
custom list field design problem
I have added three custom listfield on a single screen which are separated by some space and labels. I have also drawn a roundrect on each row.
The problem that i am facing is, whenver the first row ...
1
vote
1answer
397 views
How to make some of the listfield's rows focusable and others non-focusable?
I want to create a listfield in which some of the rows are non-focusable i.e when we scroll some of the rows should not get focus.
i have searched internet regarding the same but didn't get any help..
...
1
vote
1answer
399 views
Blackberry 6: ListField - limit the number of displayed rows?
I have a question about ListField:
If I call setSize(16) then I indicate, how many items this component contains. How do I control the height of this component then?
For example I use the code ...
1
vote
1answer
588 views
How to customize listfield in blackberry?
I am currently working on list fields. In my list, each row contains title, subtitle and image. I need a list of rows as output. Each row should contain two labelfiels and one bitmap.
Can any tell ...
1
vote
2answers
788 views
Add buttons to a ListField in BlackBerry
I am using a ListField in BlackBerry and want to include a button with two text fields in the row like:
Button
Text1
Text2
But I am not able to add the buttons. ...
1
vote
2answers
551 views
Selecing an item in a Blackberry ListField
I've been using this book as reference to creating my Blackberry application. So far I have a list of items and when I select one I get the side menu but next to my list item:
Just looking through ...
1
vote
1answer
831 views
django-nonrel on Google App Engine - Implications of using ListField for ManyToMany
I am working on a Google App Engine application and I am relatively new at this.
I have built an app already in Django and have a model using a field type of ManyToMany.
I am aware that ...
1
vote
2answers
492 views
Add image URL to bitmap image in listfield
I have 50/100 image url with specific text, i add them in vector, add listfield with callback,
I am downloading the image every time with a function call UrlToImage I am facing problem, the list is ...
1
vote
2answers
1k views
Blackberry ListField Text Wrapping - only two lines
Within my ListField, I want to be able to take any given long String, and just be able to wrap the first line within the width of the screen, and just take the remaining string and display it below ...
1
vote
2answers
2k views
Blackberry - how to add fields to listfield?
I am using ListField but encouter a problem. How can i view it as i wish (not one by one)?
For instance, there is item1, item2, item3.
Can i jump from item1 to item3 directly, ignoring item2?
In ...
1
vote
1answer
2k views
Blackberry - get checked items from list with checkboxes
How can all checked items from a list can be fetched?
I need to get all selected (checked) items from the list and populate a vector ...
I am not getting all selected items, i am getting only the ...
0
votes
2answers
47 views
Checkbox in CustomListField in Blackberry
I am creating a CustomList. In each row I am having a image, some text fields and a checkbox. But i am not able to check and uncheck the checkbox.
I have gone through this link but cant solve my ...
0
votes
1answer
38 views
ListField and button focus issue in same screen
Hello all i stuck at one problem. I have implemented a ListField in one Screen. On top of the Screen i have used one HorizontalFieldManager to hold a TitleLabel and Two Butons. I have pushed some ...
0
votes
1answer
29 views
Problems when creating screens with Listfield and Buttons
I need to create a screen with a Listfield and three buttons at the bottom of the screen. I tried to make a status bar and put three buttons into. The screen is displayed correctly but I just only be ...
0
votes
2answers
37 views
BlackBerry ListField Height Not Changing
In the ListField,If i click on selected index or focus on the selected index,i want to chane the height of the selected field automatically....
Can u help how to implement that ....
Advance thanks..
...
0
votes
0answers
39 views
focus on a custom-list sub-element
There is a customized list from one of the sample code on SO that i tried. Now I have added an ObjectChoiceField element within the list. But when i try to get the focus on the ObjectChoiceField ...
0
votes
1answer
43 views
Highlight color vanishes after adding background color to the listfield in BlackBerry
I have managed to ge the list items in the ListField and am able to recognize which item was clicked using the navigationClick method. Now I have also added a different background to my ListField by ...
0
votes
1answer
47 views
How to customize ListFieldCallBack?
i have written a class which implements ListFieldCallBack like,
import java.util.Vector;
import net.rim.device.api.ui.Graphics;
import net.rim.device.api.ui.component.ListField;
import ...
0
votes
1answer
50 views
Vertical Gradient to a ListFieldItem in Blackberry
I want to display a Vertical Gradient as the background for a ListField Row in BlackBerry. I have used shadedFillPath function to achieve this, but failed:
int[] cols = new int[]{0xFFFFFF, ...
0
votes
1answer
65 views
List field index in blackberry
I m going through ListField,..I m getting problem when i click on the selected index....
I want the code,when i click on the selected index,it is showing all the profiles for the particular index
...
0
votes
1answer
89 views
ListFieldCallback method in blackberry for Listfield
hello all i have little issue in drawListRow method . my application have one functionality in screen . at the top of the screen Next and Previous Buttonfield are place and below of this both button ...
0
votes
1answer
74 views
Blackberry return to the previus position in ListField
In my application I'm using a list.
This list can be updated by a refresh list button which is retriving more data from serever.
When user pressing the refresh button, my application seves the last ...
0
votes
1answer
220 views
Django-Nonrel with Mongdb listfield
I am trying to implement manytomany field relation in django-nonrel on mongodb. It was suggessted at to:
Django-nonrel form field for ListField
Following the accepted answer
models.py
class ...
0
votes
1answer
114 views
Blackberry-ListField with images from URL (XML DATA)
I want to display the images which are in my XML in a ListField.I have parsed the data but not able to display that data in listfield.i have created one bean class which includes setter and getter of ...
0
votes
3answers
212 views
How to create ListField containing image and multilnes text in a row — blackberry
I want to create ListField .In each row of Field i want to display image on the Right and text on the left.I am using the ListField and callback.The text and image is getting displayed but the text is ...
0
votes
1answer
148 views
0
votes
2answers
163 views
How To SetFieldChangeListener for ListField in Blackberry?
I am new For Blackberry .. i need some Help. How To SetFieldChangeListener for ListField in Blackberry?
0
votes
3answers
255 views
How to change row color background in a ListField after navigation Click?
I'm beginner in BB dev. I create a CustomListField and when I click on a row, the background color of this row must change and a new screen must be displayed (it's done!).
Could any one please help ...
0
votes
1answer
104 views
BlackBerry:List Field-How to Highlight only the text instead of the whole field
I have a list field displaying text, and I want only the text to display as focused when the field is selected. Instead of the whole field being highlighted in blue, I want only the text to be ...
0
votes
3answers
113 views
Blackberry: What is wrong with my implementation of ListField?
This is my code for my implementation of a ListField. It creates a list; however, it is empty even though I thought I add Friends from vectorFriends. I'm very new to developing blackberry apps, so ...
0
votes
1answer
379 views
Blackberry ListField: how to add Listener for list row click
Suppose i had a Screen class that has 10 ListField:
Vector v_prj_title,v_prj_mgr
// v_prj_title contains name of projects
// v_prj_mgr contains name of the project_manager of v_prj_title ...
0
votes
1answer
90 views
How to display edit field in list field of black berry
In my app i have to display list of items with price in edit field.how can i add edit field in list.
for listfield i am using code
public void drawListRow(ListField listField, Graphics graphics, int ...
0
votes
1answer
217 views
Blackberry listfield
I'm wondering if anyone has come across any sample code for creating a listField that has clickable rows.
I'm using Blackberry 5.0 API and I need to create of table of clickable rows. When the row is ...
0
votes
1answer
88 views
How to override downloaded image with default image to black berry list field
From the past two days i am doing list field with web image in black berry,because i am new.
I am displaying list field with some default image.when i dowloaded the actual image from web it can't ...