Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
dear QV friend,
Please, One question about inputfield .
In this table:
tab:
inputfield a,b;
Load * inline [
a,b
1,2
2,5
];
Store *
from tab into example.qvd;
The store works.
Now I reload the data stored with inputfield
inputfield
a,b;
Load * from example.qvd;
the data do not changes. the table do not update the data I loaded
but remains the old data I post in inputfield .
Does exists some way to update the data I reload in the same table?
Thanks best regards
Slash
Hello Slash,
I think that you are using when you reload the same values for your table without being dropped. I mean, are you always using the inline values instead the QVD ones?
I'm working with this example based in yours:
//inputfield
inputf:
inputfield a,b;
Load * inline [
a,b
1,2
2,5
];
Store inputf into example.qvd;
DROP TABLE inputf;
inputfqvd:
LOAD a, b FROM example.qvd (qvd);
And works properly. If you create a tab and change the values, the values are effectively changed and after reloading, you will see that the values are changed.
Hope this helps.
Hello Slash,
I think that you are using when you reload the same values for your table without being dropped. I mean, are you always using the inline values instead the QVD ones?
I'm working with this example based in yours:
//inputfield
inputf:
inputfield a,b;
Load * inline [
a,b
1,2
2,5
];
Store inputf into example.qvd;
DROP TABLE inputf;
inputfqvd:
LOAD a, b FROM example.qvd (qvd);
And works properly. If you create a tab and change the values, the values are effectively changed and after reloading, you will see that the values are changed.
Hope this helps.