Questions tagged [subitem]

Use this tag for questions related to subitems, i.e. items that usually inside ListView(Items).

is used for questions related to the manipulation/insertion/deletion of the subitem, i.e. a collection of an item inside a ListView (for example).

96 questions
0
votes
0 answers

creating crystal report based on a listview subitem value

Is it possible to create a crystal report with values coming from a listview subitems which is generated after a mouse button event? I don't know how to make crystal report yet. I'm still trying to find a way to generate a report based on the…
0
votes
0 answers

There is any way to do a subitem from subitem from expandablelistview?

There is any way to do a subitem from subitem from expandablelistview? if yes tell me how... her is my try to do this...(do a third subitem..). And more two updates from my code... private Context context; String [] things = {"sushi", "tells",…
Guilherme Ramos
  • 196
  • 2
  • 10
0
votes
1 answer

C# How to get the subitem on a listview to stay on the same line as the item?

So I have the following code: listView1.Items.Add("Test"); ListViewItem testing = new ListViewItem(); testing.SubItems.Add("Test2"); listView.Items.Add(testing); And here's what it…
Xfrogman43
  • 3
  • 2
  • 5
0
votes
1 answer

How add subitems with array

I want to make a simple application that contains a listview and underneath a subitem to say something more than that button. In this case big say "Hi" and "Sub Hi" in subitem. I have read in places that you have to create a separate class but the…
CristianCV
  • 342
  • 1
  • 5
  • 17
0
votes
1 answer

Related List: Show sub items from Master-Detail(Opportunity) in Account

i hope you can help me with my problem... currently we have the following structure + Account XY +--+ Opportunity 1 | +--+ custom Object 1 | + custom Object 2 +--+ Opportunity 2 | +--+ custom Object 3 | + custom Object 4 | + custom…
ohaucke
  • 3
  • 8
0
votes
1 answer

How to customised ListView that have repeated structure in Android?

I'm new to android and I want to customize my application that have structures like following: CompanyName-1:abc employee-1: employee-2: CompanyName-2:pqr employee-1: CompanyName-3:xyz employee-1: employee-2: employee-3: …
0
votes
1 answer

How to add a subitem in this list activity?

i wanna add subitem for every list item.I am working on an app which uses swipey tabs in one tab there is a list and following is the code for that list i just wanna add a subitem text to every list entry how can i do that. public class…
user2304058
  • 99
  • 2
  • 3
  • 7
0
votes
1 answer

How to reorder subitems of a listviewitem?

so i've written a code that reorders the columns of a listview ( actually just -=1 and +=1's the display index of the selected listview column. But when i move the columns the subitems stay . they dont move. I would like the corresponding subitem to…
0
votes
1 answer

css menu with thick underline

I'm trying to mimic the look of this menu but fix the errors.: http://349ghgg83g.weebly.com/ When you hover over "Home" then move to "portfolio" a underline appears under "portfolio" As it should. But when you go from "contact" to "portfolio" the…
mike
  • 1,135
  • 4
  • 22
  • 39
0
votes
1 answer

vb6 set listview item/subitem image

I have a listview that I want to implement the effect seen in this image: The listview hides some items like in the image below except a password is entered. I know that item and subitem image are usually left aligned. How do I set the item and…
Smith
  • 5,765
  • 17
  • 102
  • 161
0
votes
3 answers

Can't access Subitems in ListView while looping

I am trying to loop over a ListView with a foreach statement, but I can't seem to get the Subitems of item. No success with a For statement either. IntelliSense doesn't propose it on both ways. Code Behind: protected void btnNext_Click(object…
bart_dp
  • 45
  • 2
  • 11
0
votes
2 answers

C# Write Listview, and Read Listview (how to add indicator for listview for subitem)

I got this project going on for myself to keep some thing in order. What I have is this: +---Date---+----Time----+----Error-----------+ |24-24-2012| 4:42 | Warning - test/test| +----------+------------+--------------------+ Now I got all that…
user1547355
0
votes
2 answers

Add subitem to list view with String Array?

BTW: This is for an Android app. Hey guys, I have made a ListView, and I have managed to add data to it. Here some example code of what I have done so far. String[] gameListFin; ArrayList gameList = new…
Alexandre Hitchcox
  • 2,704
  • 5
  • 22
  • 33
-1
votes
2 answers

Cannot update subitems ListBox

I have two ListBoxes. One ListBox displays some items. Each item has a list of subitems. The second ListBox displays the subitems of the current item in the first ListBox. A typical item/subitem scenario. When I add a value to the subitem list,…
dkalkwarf
  • 313
  • 2
  • 11
-1
votes
2 answers

ListView with one SubItem

I know it's been asked a few times. But somehow every answer is too abstract and just doesn't fit my problem. Okay, as the question says, I need a list where each item has a subitem. I already have a list of items, but without the subitems. As you…
Timisorean
  • 1,388
  • 7
  • 20
  • 30