Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

editable field in column

hello guys, I would like to know if is possible to make editable fields in a column of a linear table.

In my example I have a column with values and I'd like the user can edit these values

I hope someone can help me once again, thanks (:

9 Replies
tresesco
MVP
MVP

Have a look at InputField statement in help, that might help here.

amit_saini
Master III
Master III

Hi,

Like this???

Thanks,

AS

Not applicable
Author

Hi Mattia,

have a read up on Inputfield maybe

Anonymous
Not applicable
Author

Write your script like

Inputfield bdg_year;

Inputfield bdg_desc;

Budget:

load * INLINE [

bdg_code, bdg_desc,bdg_year, bdg_state_code

0,prova 2012,2012,1

1,prova 2013,2013,1

2,prova 2014,2014,1

];

and then  use a table box in your UI.

Anonymous
Not applicable
Author

I had already looked in the manual and to do that I have to write "inputfield name:" but this only works when by script load fields via select. And then I can make it editable fields in the column of my table linear.

But in this case I do not have to read anything (by select), I have a column created by me.

I hope this was clear

Anonymous
Not applicable
Author

I'm looking at your example, I think that in part is what I need.

The only difference is that I do not need other tables, I try if I can adapt it to what I have to do.

I hope it works

engishfaque
Specialist III
Specialist III

Dear Mattia,

Use INPUTFIELD before loading the table,

For example:

INPUTFIELD YourFieldName;

Kind regards,

Ishfaque Ahmed

Anonymous
Not applicable
Author

i do something similar but doesn't work

Anonymous
Not applicable
Author

I have attached the steps I did. another thing, why when I add the two columns my table is reduced to 2 lines?

Edit.

solved