projects
/
zakform
/
json
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f53f60
)
On load if no key fields returns the first array element.
master
author
Andrea Zagli
<azagli@libero.it>
Wed, 9 Sep 2020 13:57:12 +0000
(15:57 +0200)
committer
Andrea Zagli
<azagli@libero.it>
Wed, 9 Sep 2020 13:57:12 +0000
(15:57 +0200)
src/form.c
patch
|
blob
|
history
diff --git
a/src/form.c
b/src/form.c
index ecf05494a1f0775376831c66fafbe7534ac40b38..ad2b1d332bfa7a8b55687b0046c25564ef7378c6 100644
(file)
--- a/
src/form.c
+++ b/
src/form.c
@@
-402,8
+402,14
@@
static JsonObject
if (k < 1)
{
+ /* TODO add a property to make this behaviour variable */
/* no key fields */
- return NULL;
+ /* returns the first record */
+ ar = json_node_get_array (priv->root);
+ jnode = json_array_get_element (ar, 0);
+ obj = json_node_get_object (jnode);
+
+ return obj;
}
ok = FALSE;