How do I use CompCreator with Listview?

What is the problem with the solution proposed by @patel ?


App is closing after some clicks

Which emulator are you using? Mi ?

you want to get row value by click row?or any label?

by selecting row I should get SELECTED ROW values.

image
the same with MIT AI2 Companion

image
bind the click event on the row, not lbl
and set the data you want to get with some custom property name

Took me a while to figure it out, but here, with @Patel 's aia project:

On clicking the third row of data

image

contents returned as a list :slight_smile:

1 Like

I'm using in this way and it's working, and I would like to ask is it ok using in this way or is there any other easiest way?



RESULT:

1 Like

If it works for you, and does what you want, and doesn't crash your device/emulator, then use it.

However, it may make more sense to return all the row data with a click, then select required fields. Gives you more options - which you may need later....

3 Likes

@TIMAI2 Thank you so much...!

1 Like

After Hardwork I got result: :smiling_face_with_three_hearts:

but still small issue:
I would like to remove 1st index and seleted row to be different color.

but when I try this for remove 1st index
it's removing 1st index but when you click button it's removing next index and so on....

how to fix it?
here is full block:

Remove First index

If you do not need the first index (headers) then you have choices:

  1. Don't call it back from the spreadsheet - add a range key=value to the url
  2. Remove the first item before running the dynamic components build procedure
  3. Exclude the first item from the build, whilst keeping it in the list (see post #18 for this)

Highlight / Colour Selected row

Use the click event to

  1. clear the background colour of ALL the children (rows) (you may need a global variable to do this)
  2. set the background row of the selected row

@TIMAI2 thank you so much !
I just put remove index on GOT.text and it's working

here is my result :smiling_face_with_three_hearts:

I would to ask, can you see when I initialize it's displaying this


I would like hide on progress bar how to do that?

1 Like

In the Designer, set the VirtualScreen.Visible to false.

Set it to true using the blocks just before the DismissProgressDialog block.

@SHUBHAMR69 I tried not helping ;((((


image

1 Like