Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to use inputfield

Hi all,

I am trying to use inputfield but it seems it doesn't work as I need.

According to the base guide, I have to declare something like:

INPUTFIELD Test.inputField;

Then I can declare my table. I used this one:

Test:

LOAD *

Inline [

     var, inputField

     1, 1

];

After reloading, I can use that table and change every inputField value.

When I try to declare a table like the following, I can't change inputField value - that's the problem.

Test:

LOAD *;

SQL SELECT * FROM table;

I need to change some values, and the table comes from a query.

I use QUALIFY and UNQUALIFY statement in my script. I can add a qvw file with a semplify example.

Last but not least: when an user edits a value, will the document save new value into its memory and then share new value with all users?

Thank you.

21 Replies
dickelsa
Creator
Creator

Make sure the table is not connected in any way to the other tables, else it will go wrong.

Anonymous
Not applicable
Author

do you know why?

Just declared the input field in script load and use the field to do some calculations. Now in front end The value is wrong and cannot be editable. dickelsa