# Getting any component from non cloned components

**URL:** https://community.thunkable.com/t/getting-any-component-from-non-cloned-components/1473335
**Category:** Questions about Thunkable X
**Tags:** list, any-component, clone
**Created:** [August 28, 2021, 2:24am UTC](https://community.thunkable.com/t/getting-any-component-from-non-cloned-components/1473335 "2021-08-28T02:24:18Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![overshield](https://avatars.discourse-cdn.com/v4/letter/o/e19b73/32.png) [@overshield](https://community.thunkable.com/u/overshield)
#### Post date: [August 28, 2021, 2:24am UTC](https://community.thunkable.com/t/getting-any-component-from-non-cloned-components/1473335/1 "2021-08-28T02:24:19Z")

</div>

I’m having trouble understanding why this isn’t working.  
The button5 component at the bottom is just me debugging to make sure I’m seeing the correct width.

I’ve tried putting a list component in front of the purple all text input component too

Thanks for any help

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/c/d/cdfc54e74e501d6ad1217e1b10a35cdc42d01fb0.png)

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [August 28, 2021, 2:34am UTC](https://community.thunkable.com/t/getting-any-component-from-non-cloned-components/1473335/2 "2021-08-28T02:34:30Z")

</div>

This is logically incorrect.

The green `text_input` expects a single component but you are passing it a list of components which will not work.

The same is true for setting the `width` property of the component. It is expecting a single value not a list and certainly not a list of a list.

---

<div class="post-metadata">

### Author: ![overshield](https://avatars.discourse-cdn.com/v4/letter/o/e19b73/32.png) [@overshield](https://community.thunkable.com/u/overshield)
#### Post date: [August 28, 2021, 2:46am UTC](https://community.thunkable.com/t/getting-any-component-from-non-cloned-components/1473335/3 "2021-08-28T02:46:58Z")

</div>

Ok so how would I edit all the widths of all of inputs?

In the end it’s not a list of a list, it’s properly getting a single value of the largest width of all the inputs.

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [August 28, 2021, 7:57am UTC](https://community.thunkable.com/t/getting-any-component-from-non-cloned-components/1473335/4 "2021-08-28T07:57:50Z")

</div>

> [@overshield](#):
>
> how would I edit all the widths of all of inputs?

Loop through them changing each one.

Example  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/e/0/e00eb4e787a6cf6d77f7d48ba21b01ece7d7958f.png)

---

<div class="post-metadata">

### Author: ![overshield](https://avatars.discourse-cdn.com/v4/letter/o/e19b73/32.png) [@overshield](https://community.thunkable.com/u/overshield)
#### Post date: [August 28, 2021, 12:18pm UTC](https://community.thunkable.com/t/getting-any-component-from-non-cloned-components/1473335/5 "2021-08-28T12:18:11Z")

</div>

Did you try this method? I am getting no result from this.

---

<div class="post-metadata">

### Author: ![overshield](https://avatars.discourse-cdn.com/v4/letter/o/e19b73/32.png) [@overshield](https://community.thunkable.com/u/overshield)
#### Post date: [August 28, 2021, 12:33pm UTC](https://community.thunkable.com/t/getting-any-component-from-non-cloned-components/1473335/6 "2021-08-28T12:33:54Z")

</div>

K I did some testing, all my text inputs are in rows first.

I had to do a loop within a loop first but it’s working now.

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 1:17pm UTC](https://community.thunkable.com/t/getting-any-component-from-non-cloned-components/1473335/7 "2024-11-08T13:17:01Z")

</div>


