This problem is also with me in the button component,
[mod edit - unnecessary tagging removed] is there bug going on?
This problem is also with me in the button component,
[mod edit - unnecessary tagging removed] is there bug going on?
In both cases, it is more likely to be poor blocks coding.
and elmachi130 is on Screen13 which might also be causing stability issues.
I have no such issues with my demo ...
tvDisplay.aia (27.4 KB)
This doesn't happen to me either
but when I add the union of text with labels the flickering happens to me
Add check box in table
I have 2 labels containing text
The first label has 3 items A,B,C which will be the header
The second label contains 2 items per row and that is where I would like to add a third item as a check.
then get the name of the selected item in a third label
TABLA_CON_CHECK_DE_SELECCION.aia (28.2 KB)
I show how to do this in this post:
yes I was seeing it
I don't know if the method of entering the check in the third item is correct.
input type="checkbox" checked/
and then generate the table
or is there another way
enlighten me
TIMAI2
What do you not understand ?
Apply 'do it' on lista_para_tabla to see what it contains.
And you need to manipulate the data as a list, not a string.
with block A if I get the boxes
with block B I get a message that no argument is accepted
Even though the two contents in the blue text are the same and that is what I generate the table with
what would be the reason?
name2 does not look like a list of list.
That's right, it's not a list.
is the union of texts
Does it necessarily have to be list of list?
In this case, how could I express it?
In this case I have a header
when I select the row box
I would like to get the first column text in the same row
How can I get to this position?
I am getting from the header
vals += tbl.rows[i+1].cells[0].innerText + ",";
based on title of this post
It is now that I would like to customize the table data when selecting the CheckBox
this is the case
2 restrictions are needed
restriction to be able to select only those that are equal to 0 in the second column
restriction to be able to select one at a time (not multiple)
Table_CheckBox.aia (29.8 KB)
I need to prevent me from selecting CheckBox on row other than = 0
On the other hand it still allows multiple selection, I need only one selection to be allowed at a time, no more
Seems like you want to "eat your cake and have it".
You can disable checkboxes on rows that do not = 0 (but then not much point in putting checkboxes there...)
But then you want to select only one checkbox at a time (does this include the ones that =0, if so, how to select which one to check ?)
So which is it? You may need to explain in more detail...