Relationship Graph

Relationship Graph
related to related to child of child of duplicate of duplicate of

View Issue Details

This bug affects 1 person(s).
 10
IDProjectCategoryView StatusLast Update
18693Bug reportsSurvey takingpublic2023-06-14 14:17
Reporterollehar Assigned Totibor.pacalat  
PriorityhighSeverityminor 
Status closedResolutionfixed 
Product Version5.6.x 
Summary18693: Using checkbox question for yes/no loses data when data entry view (response edit)
Description

Checkbox for yes/no question: Checked = yes, Not checked = No.

Null in database or not when saved at data entry?

A customer that uses such survey design will corrupt the data in the data entry screen. When NULL --> empty string, it will be parsed as "No" instead of "Not yet answered".

Additional Information

Solution:

Current suggestion after discussion: Add a new column in the HTML table, with a checkbox for each question. "Unseen", checked if value is null in database.
If this checkbox is checked, DO NOT make any changes in the database for this question (should keep being NULL).

The issue is to avoid a NULL value being converted to empty string in the database when the form is posted.
Since empty string can mean lots of things, like "No" for a checkbox, when exported.

TagsNo tags attached.
Bug heat10
Complete LimeSurvey version number (& build)master
I will donate to the project if issue is resolvedNo
Browser-
Database type & version-
Server OS (if known)-
Webserver software & version (if known)-
PHP Version-

Relationships

related to 18695 new Data entry didn't check relevance 

Activities

ollehar

ollehar

2023-03-17 15:38

administrator   ~74174

Last edited: 2023-03-17 15:39

Before/after data entry submit.

mysql> select * from survey_298188;
+----+-------+------------+----------+---------------+-----------+--------------------+--------------------+
| id | token | submitdate | lastpage | startlanguage | seed      | 298188X83X259SQ001 | 298188X84X260SQ001 |
+----+-------+------------+----------+---------------+-----------+--------------------+--------------------+
|  1 | NULL  | NULL       |        1 | en            | 203463304 | Y                  | NULL               |
+----+-------+------------+----------+---------------+-----------+--------------------+--------------------+
1 row in set (0,00 sec)

mysql> select * from survey_298188;
+----+-------+------------+----------+---------------+------+--------------------+--------------------+
| id | token | submitdate | lastpage | startlanguage | seed | 298188X83X259SQ001 | 298188X84X260SQ001 |
+----+-------+------------+----------+---------------+------+--------------------+--------------------+
|  1 | NULL  | NULL       |        1 | en            |      | Y                  |                    |
+----+-------+------------+----------+---------------+------+--------------------+--------------------+
DenisChenu

DenisChenu

2023-03-17 16:35

developer   ~74176

Checkbox for yes/no question: Checked = yes, Not checked = No.

Not checked : empty string (not No)

DenisChenu

DenisChenu

2023-03-17 16:36

developer   ~74177

298188X84X260SQ001 as NULL : it means not shown by condition , not NOT checked

ollehar

ollehar

2023-03-17 21:10

administrator   ~74178

I know, Denis, read again please. The issue is the DATA ENTRY screen (edit response).

DenisChenu

DenisChenu

2023-03-18 14:13

developer   ~74179

OK : you confirm 298188X84X260SQ001 was hidden by relevance ?
It's what i don't understand :)

DenisChenu

DenisChenu

2023-03-18 14:14

developer   ~74180

PS : i think it's same issue for ALL question : for example single choice.

Have a lss file with

A Y/N question
A single choice with relevance set to Q00.NAOK == "Y'

Can help to find the issue.

DenisChenu

DenisChenu

2023-03-18 14:23

developer   ~74181

Not related to checkbox …

Data entry don't use relevance

Steps to reproduce

  1. Import included survey,
  2. Lauch and submit
  3. Check statistics : one Not completed or Not displayed
  4. Go to response
  5. Edit the last response
  6. Save
  7. Check statistics

Expected result

one Not completed or Not displayed

Actual result

zero Not completed or Not displayed (moved to No answer)

DenisChenu

DenisChenu

2023-03-18 14:28

developer   ~74182

Worst : you can set Yes to the G01Q02
And i think you can submit invalid value

data entry screen are not made for this …

Solution :

  1. Allow to laucnh any survey as public https://gitlab.com/SondagesPro/coreAndTools/reloadAnyResponse
  2. RecomputeExpression : https://gitlab.com/SondagesPro/RemoteControl/RemoteManageResponse/-/blob/main/RemoteControlHandler.php#L163
  3. do all ExpressionManager action when try submitting Data entry screen (and set survey as All in one page) (need a lot of rewrite of Expression Manager and SurveyRuntim (and frontend_helpr)
DenisChenu

DenisChenu

2023-03-18 14:28

developer   ~74183

Another issue : Equation are not updated when using Data entry screen

ollehar

ollehar

2023-03-18 16:39

administrator   ~74184

Jesus, give me a break... Don't change title please.

ollehar

ollehar

2023-03-18 16:40

administrator   ~74185

The reported issue is about pages and checkboxes, not relevance eq.

ollehar

ollehar

2023-03-18 16:45

administrator   ~74186

Last edited: 2023-03-18 17:15

One solution might be to regard lastpage visited in the answer table when processing the POST in data entry. Another solution is to never POST the whole page, just single questions.

It could also be made visible if a question was shown to the user or not.

ollehar

ollehar

2023-03-18 16:46

administrator   ~74187

OK : you confirm 298188X84X260SQ001 was hidden by relevance ?

No, it's another question group, so on another page --> never visited/seen.

DenisChenu

DenisChenu

2023-03-18 17:40

developer   ~74188

No, it's another question group, so on another page --> never visited/seen.

Maybe make a complete report is better then … to fix an issue : you need to know exactly what is the issue …

DenisChenu

DenisChenu

2023-03-18 18:13

developer   ~74190

No, it's another question group, so on another page --> never visited/seen.

But you can eventually set as Completed a not completed response.
And we can not update (currently) the last page …

ollehar

ollehar

2023-03-18 19:01

administrator   ~74191

Maybe make a complete report is better then … to fix an issue : you need to know exactly what is the issue …

Yes sorry, we have an affected customer, this is just my notes, we'll pick it up during the week I think.

DenisChenu

DenisChenu

2023-03-20 09:13

developer   ~74193

For lastpage : i really think the only way is to add warning on edit page … there are no way to allow set as complete …

And more : Data edition is used for prefilling answer , then if set NULL according to last page set : this feature is broken …

2 possible solution here

  1. Add a 'Set to null" checkbox option on all question (checked if already null)
  2. Add a N when checkbox is not checked for multiple choice in Question twig, and show it with 3 option when edit : Y + N + No answer (Big API update ? Except if we do it in option).
ollehar

ollehar

2023-03-20 11:13

administrator   ~74197

For lastpage : i really think the only way is to add warning on edit page … there are no way to allow set as complete …

Not sure what such a warning would say? Don't use this feature if you have checkboxes for yes/no?

Add a 'Set to null" checkbox option on all question (checked if already null)

Yes, but might make the POST too big, basically doubling its size in number of inputs.

About 2, not sure. It's already a bit strange that unchecked is saved as empty string, isn't it? But hard to change if people rely on it.

DenisChenu

DenisChenu

2023-03-20 11:21

developer   ~74203

Yes, but might make the POST too big, basically doubling its size in number of inputs.

Since we move Answers + Subquestions with all Question settings : i think we don't care about number of inputs.

About 2, not sure. It's already a bit strange that unchecked is saved as empty string, isn't it? But hard to change if people rely on it.

Question settings ?
Save false as N (default to false)

It can not be a QuestionTheme since QuestionTheme don't update Data Entry.

ollehar

ollehar

2023-03-20 12:10

administrator   ~74206

Since we move Answers + Subquestions with all Question settings : i think we don't care about number of inputs.

That's one question, much less than the entire survey. Stop complaining xD

DenisChenu

DenisChenu

2023-03-20 12:17

developer   ~74207

That's one question, much less than the entire survey. Stop complaining xD

;)
(but : unsure about much less)

The biggest part about number of data sent was Quick Translation since years now.

ollehar

ollehar

2023-03-22 15:30

administrator   ~74230

Last edited: 2023-03-22 15:46

Current suggestion after discussion: Add a new column in the [html] table, with a checkbox for each question. "Unseen", checked if value is null in database.

If this checkbox is checked, DO NOT make any changes in the database for this question (should keep being NULL).

DenisChenu

DenisChenu

2023-03-22 15:31

developer   ~74231

Current suggestion after discussion: Add a new column in the table, with a checkbox for each question. "Unseen", checked if value is null in database.

But we already have issue with number of question with multiple choice.

ollehar

ollehar

2023-03-22 15:34

administrator   ~74232

But we already have issue with number of question with multiple choice.

Do we tho? If it's visited, all columns in db is already empty string OR "Y", not null.

DenisChenu

DenisChenu

2023-03-22 15:35

developer   ~74233

But more : it's for all questions ?

Then limit is not at 800 questions but at 400 for mysql ?

It's a joke ?

DenisChenu

DenisChenu

2023-03-22 15:35

developer   ~74234

https://manual.limesurvey.org/General_FAQ/en#...regarding_survey_size

ollehar

ollehar

2023-03-22 15:38

administrator   ~74235

We're not gonna change the database structure, just the posted form.

ollehar

ollehar

2023-03-22 15:39

administrator   ~74236

Add a new column in the table

Sorry, new column in the HTML table! :D <table> etc

DenisChenu

DenisChenu

2023-03-22 15:40

developer   ~74237

Ouf :)
A Checkbox "Set as unseen/unrelevant"

:+1:

DenisChenu

DenisChenu

2023-03-22 16:11

developer   ~74238

Sorry sorry …

gabrieljenik

gabrieljenik

2023-03-28 09:17

manager   ~74292

https://github.com/LimeSurvey/LimeSurvey/pull/3018

DenisChenu

DenisChenu

2023-03-28 19:04

developer   ~74295

To avoid issue with subquestion : maybe {$fname['fieldname']}:unseen ?

DenisChenu

DenisChenu

2023-05-05 16:35

developer   ~74856

Some fix to do

  1. Single choice with comment : unseen state
  2. Numeric : unseen state shown for not answered
  3. Multi numeric : unseen state shown for not answered
  4. Date : unseen state shown for not answered
DenisChenu

DenisChenu

2023-05-05 16:41

developer   ~74857

We must avoid to loose text (sometime big) by error Then

Unseen checkbox must tested only if value ===""

Peek 05-05-2023 16-37.gif (53,427 bytes)   
Peek 05-05-2023 16-37.gif (53,427 bytes)   
DenisChenu

DenisChenu

2023-05-05 17:22

developer   ~74863

6.X version have same issue

  1. Single choice with comment not answered : unseen state
  2. Numeric : unseen state shown for not answered
  3. Multi numeric : unseen state shown for not answered
  4. Date : unseen state shown for not answered
  5. We must avoid to loose text Then : Unseen checkbox must tested only if value ===""
gabrieljenik

gabrieljenik

2023-05-05 18:30

manager   ~74875

5x PR: https://github.com/LimeSurvey/LimeSurvey/pull/3109

gabrieljenik

gabrieljenik

2023-05-17 23:14

manager   ~75050

v5 is ready for re-reviewal.

Added validation: Unseen can onlybe checked if answer is empty.
Had to add some options (answer options) for making answers empty on some control types (this screen was rather outdated)
Had to add a hook mechanism on the save.js, as to run custom validation before submitting a form.
(was on 3.x, not on v5, nor v6)

DenisChenu

DenisChenu

2023-05-18 16:38

developer   ~75083

Had to add a hook mechanism on the save.js, as to run custom validation before submitting a form.

It's always good to add validation.
Here : i think i prefer unchecking (and set as disable) checkbox when there are data in input, maybe as feature request ? Or if UX tester can give advice .

Else : still the issue woith numeric and date question type : this item must NOT have an uinseen checkbox, or label must be «unseen or not answered»

I send a LSA in 2 minutes

DenisChenu

DenisChenu

2023-05-18 16:47

developer   ~75084

The LSA showing the issue on numeric+multi-numeric+date

Steps to reproduce

  1. Import
  2. Launch : don't enter something in any quetstion (you can not submit :D)
  3. Submit
  4. Go to browse response
  5. Edit submitted response

Expected result

See all question seen

Actual result

The 3 primary question shown as unseen.

DenisChenu

DenisChenu

2023-05-18 16:47

developer   ~75085

Still the numeric+date issue

DenisChenu

DenisChenu

2023-05-18 16:51

developer   ~75086

PS : if you find a solution to avoid this
for multiple choice (unseen column ?) UX can be really better.
(i didn't set as Needs update by author, juts if you have a better solution).

gabrieljenik

gabrieljenik

2023-05-18 17:57

manager   ~75090

Last edited: 2023-05-18 17:58

i think i prefer unchecking (and set as disable) checkbox when there are data in input, maybe as feature request

Yes please, another ticket.

still the issue woith numeric and date question type : this item must NOT have an uinseen checkbox, or label must be «unseen or not answered»

I think we missed the label part.
Let me review.

PS : if you find a solution to avoid this

Another ticket :)
If not, this will be neverending story :)

gabrieljenik

gabrieljenik

2023-06-08 23:45

manager   ~75500

Ready for merge.
Please, if possible, review it as well. These touches lot of stuff and sensitive (data edit)

tibor.pacalat

tibor.pacalat

2023-06-09 14:15

administrator   ~75520

@gabrieljenik can you please resolve conflicts here https://github.com/LimeSurvey/LimeSurvey/pull/3109 ?

gabrieljenik

gabrieljenik

2023-06-12 21:48

manager   ~75565

Done

ollehar

ollehar

2023-06-13 09:52

administrator   ~75575

Ooooh we can finally merge this? :D Hooray!

tibor.pacalat

tibor.pacalat

2023-06-13 14:43

administrator   ~75601

There are conflicts in master branch @gabrieljenik https://github.com/LimeSurvey/LimeSurvey/pull/3018

guest

guest

2023-06-13 14:47

viewer   ~75602

Fix committed to 5.x branch: http://bugs.limesurvey.org/plugin.php?page=Source/view&amp;id=34807

guest

guest

2023-06-13 14:47

viewer   ~75603

Fix committed to 5.x branch: http://bugs.limesurvey.org/plugin.php?page=Source/view&amp;id=34806

tibor.pacalat

tibor.pacalat

2023-06-14 14:05

administrator   ~75625

tested and merged

guest

guest

2023-06-14 14:17

viewer   ~75626

Fix committed to master branch: http://bugs.limesurvey.org/plugin.php?page=Source/view&amp;id=34814

guest

guest

2023-06-14 14:17

viewer   ~75627

Fix committed to master branch: http://bugs.limesurvey.org/plugin.php?page=Source/view&amp;id=34815

Related Changesets

LimeSurvey: 5.x aeb2f4d9

2023-06-13 14:40:23

Gabriel Jenik


Committer: GitHub Details Diff
Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view (#3109)

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

- Fix bug when last question has subquestions ( === false)
- Don't throw exception when Unseen is checked and a value is provided

---------

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
18693
mod - application/controllers/admin/DataEntry.php Diff File
mod - assets/packages/adminbasics/build/adminbasics.css Diff File
mod - assets/packages/adminbasics/build/adminbasics.js Diff File
mod - assets/packages/adminbasics/build/adminbasics.min.css Diff File
mod - assets/packages/adminbasics/build/adminbasics.min.js Diff File
mod - assets/packages/adminbasics/build/adminbasics.rtl.css Diff File
mod - assets/packages/adminbasics/build/adminbasics.rtl.min.css Diff File
mod - assets/packages/adminbasics/scss/000-lime-admin-common.scss Diff File
mod - assets/packages/adminbasics/src/parts/save.js Diff File
add - assets/scripts/admin/dataentry.js Diff File

LimeSurvey: 5.x aeb2f4d9

2023-06-13 14:40:23

Gabriel Jenik


Committer: GitHub Details Diff
Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view (#3109)

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

- Fix bug when last question has subquestions ( === false)
- Don't throw exception when Unseen is checked and a value is provided

---------

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
18693
mod - application/controllers/admin/DataEntry.php Diff File
mod - assets/packages/adminbasics/build/adminbasics.css Diff File
mod - assets/packages/adminbasics/build/adminbasics.js Diff File
mod - assets/packages/adminbasics/build/adminbasics.min.css Diff File
mod - assets/packages/adminbasics/build/adminbasics.min.js Diff File
mod - assets/packages/adminbasics/build/adminbasics.rtl.css Diff File
mod - assets/packages/adminbasics/build/adminbasics.rtl.min.css Diff File
mod - assets/packages/adminbasics/scss/000-lime-admin-common.scss Diff File
mod - assets/packages/adminbasics/src/parts/save.js Diff File
add - assets/scripts/admin/dataentry.js Diff File

LimeSurvey: master 3ee692cc

2023-06-14 14:04:14

Gabriel Jenik


Committer: GitHub Details Diff
Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view (#3018)

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

- Fix Data Entry crash with debug=2

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Revert "Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view"

This reverts commit 2e2edc9d9e2c7c39b26eb7234af5e0d80d3f1949.

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18659: cannot install two plugins in a row

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

- Fix after merge

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

- Fix bug when last question has subquestions ( === false)
- Don't throw exception when Unseen is checked and a value is provided

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

- Fix file changed by mistake

---------

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
18659, 18693
mod - application/controllers/admin/DataEntry.php Diff File
mod - assets/admin_themes/adminbasics_temporary/000-lime-admin-common.scss Diff File
mod - assets/packages/adminbasics/build/adminbasics.js Diff File
mod - assets/packages/adminbasics/build/adminbasics.min.js Diff File
mod - assets/packages/adminbasics/src/parts/save.js Diff File
add - assets/scripts/admin/dataentry.js Diff File
mod - themes/admin/Sea_Green/css/sea_green-rtl.css Diff File
mod - themes/admin/Sea_Green/css/sea_green-rtl.min.css Diff File
mod - themes/admin/Sea_Green/css/sea_green.css Diff File
mod - themes/admin/Sea_Green/css/sea_green.min.css Diff File

LimeSurvey: master 3ee692cc

2023-06-14 14:04:14

Gabriel Jenik


Committer: GitHub Details Diff
Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view (#3018)

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

- Fix Data Entry crash with debug=2

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Revert "Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view"

This reverts commit 2e2edc9d9e2c7c39b26eb7234af5e0d80d3f1949.

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18659: cannot install two plugins in a row

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

- Fix after merge

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

- Fix bug when last question has subquestions ( === false)
- Don't throw exception when Unseen is checked and a value is provided

* Fixed issue 18693: Using checkbox question for yes/no loses data when data entry view

- Fix file changed by mistake

---------

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
18659, 18693
mod - application/controllers/admin/DataEntry.php Diff File
mod - assets/admin_themes/adminbasics_temporary/000-lime-admin-common.scss Diff File
mod - assets/packages/adminbasics/build/adminbasics.js Diff File
mod - assets/packages/adminbasics/build/adminbasics.min.js Diff File
mod - assets/packages/adminbasics/src/parts/save.js Diff File
add - assets/scripts/admin/dataentry.js Diff File
mod - themes/admin/Sea_Green/css/sea_green-rtl.css Diff File
mod - themes/admin/Sea_Green/css/sea_green-rtl.min.css Diff File
mod - themes/admin/Sea_Green/css/sea_green.css Diff File
mod - themes/admin/Sea_Green/css/sea_green.min.css Diff File

Issue History

Date Modified Username Field Change
2023-03-17 15:15 ollehar New Issue
2023-03-17 15:38 ollehar Note Added: 74174
2023-03-17 15:38 ollehar Bug heat 0 => 2
2023-03-17 15:39 ollehar Note Edited: 74174
2023-03-17 15:44 ollehar Product Version => 5.6.x
2023-03-17 15:46 ollehar Description Updated
2023-03-17 16:35 DenisChenu Note Added: 74176
2023-03-17 16:35 DenisChenu Bug heat 2 => 4
2023-03-17 16:36 DenisChenu Note Added: 74177
2023-03-17 21:10 ollehar Note Added: 74178
2023-03-18 14:13 DenisChenu Note Added: 74179
2023-03-18 14:14 DenisChenu Note Added: 74180
2023-03-18 14:23 DenisChenu Note Added: 74181
2023-03-18 14:23 DenisChenu File Added: Capture d’écran du 2023-03-18 14-18-32.png
2023-03-18 14:23 DenisChenu File Added: Capture d’écran du 2023-03-18 14-19-19.png
2023-03-18 14:23 DenisChenu File Added: survey_archive_999727.lsa
2023-03-18 14:23 DenisChenu Summary Using checkbox question for yes/no loses data when data entry view (response edit) => Data entry screen don't check relevance of question
2023-03-18 14:28 DenisChenu Note Added: 74182
2023-03-18 14:28 DenisChenu Note Added: 74183
2023-03-18 16:39 ollehar Summary Data entry screen don't check relevance of question => Using checkbox question for yes/no loses data when data entry view (response edit)
2023-03-18 16:39 ollehar Note Added: 74184
2023-03-18 16:40 ollehar Note Added: 74185
2023-03-18 16:45 ollehar Note Added: 74186
2023-03-18 16:46 ollehar Note Added: 74187
2023-03-18 17:15 ollehar Note Edited: 74186
2023-03-18 17:40 DenisChenu Note Added: 74188
2023-03-18 18:13 DenisChenu Note Added: 74190
2023-03-18 18:14 DenisChenu Relationship added related to 18695
2023-03-18 19:01 ollehar Note Added: 74191
2023-03-20 09:13 DenisChenu Note Added: 74193
2023-03-20 11:13 ollehar Note Added: 74197
2023-03-20 11:21 DenisChenu Note Added: 74203
2023-03-20 12:10 ollehar Note Added: 74206
2023-03-20 12:17 DenisChenu Note Added: 74207
2023-03-20 22:06 gabrieljenik Status new => confirmed
2023-03-22 15:30 ollehar Note Added: 74230
2023-03-22 15:31 ollehar Priority none => high
2023-03-22 15:31 DenisChenu Note Added: 74231
2023-03-22 15:33 ollehar Note Edited: 74230
2023-03-22 15:34 ollehar Note Added: 74232
2023-03-22 15:35 DenisChenu Note Added: 74233
2023-03-22 15:35 DenisChenu Note Added: 74234
2023-03-22 15:38 ollehar Note Added: 74235
2023-03-22 15:39 ollehar Note Added: 74236
2023-03-22 15:40 DenisChenu Note Added: 74237
2023-03-22 15:46 ollehar Note Edited: 74230
2023-03-22 16:11 DenisChenu Note Added: 74238
2023-03-22 16:17 ollehar Additional Information Updated
2023-03-22 16:18 ollehar Additional Information Updated
2023-03-23 22:00 gabrieljenik Assigned To => gabrieljenik
2023-03-23 22:00 gabrieljenik Status confirmed => assigned
2023-03-28 09:17 gabrieljenik Assigned To gabrieljenik => DenisChenu
2023-03-28 09:17 gabrieljenik Status assigned => ready for code review
2023-03-28 09:17 gabrieljenik Note Added: 74292
2023-03-28 09:17 gabrieljenik Bug heat 4 => 6
2023-03-28 19:04 DenisChenu Status ready for code review => in code review
2023-03-28 19:04 DenisChenu Note Added: 74295
2023-04-04 12:37 DenisChenu Assigned To DenisChenu =>
2023-04-04 12:37 DenisChenu Status in code review => ready for testing
2023-05-05 16:35 DenisChenu Note Added: 74856
2023-05-05 16:41 DenisChenu Note Added: 74857
2023-05-05 16:41 DenisChenu File Added: Peek 05-05-2023 16-37.gif
2023-05-05 17:22 DenisChenu Note Added: 74863
2023-05-05 18:30 gabrieljenik Note Added: 74875
2023-05-17 23:14 gabrieljenik Note Added: 75050
2023-05-17 23:14 gabrieljenik Assigned To => DenisChenu
2023-05-17 23:14 gabrieljenik Status ready for testing => ready for code review
2023-05-18 16:38 DenisChenu Note Added: 75083
2023-05-18 16:38 DenisChenu File Added: Capture d’écran du 2023-05-18 16-37-01.png
2023-05-18 16:47 DenisChenu Note Added: 75084
2023-05-18 16:47 DenisChenu File Added: survey_archive_NumericalAndDateCanNotBeUnseen.lsa
2023-05-18 16:47 DenisChenu Assigned To DenisChenu => gabrieljenik
2023-05-18 16:47 DenisChenu Status ready for code review => in code review
2023-05-18 16:47 DenisChenu Note Added: 75085
2023-05-18 16:51 DenisChenu Note Added: 75086
2023-05-18 16:51 DenisChenu File Added: Capture d’écran du 2023-05-18 16-50-11.png
2023-05-18 17:57 gabrieljenik Note Added: 75090
2023-05-18 17:58 gabrieljenik Note Edited: 75090
2023-06-08 23:45 gabrieljenik Assigned To gabrieljenik => tibor.pacalat
2023-06-08 23:45 gabrieljenik Status in code review => ready for merge
2023-06-08 23:45 gabrieljenik Note Added: 75500
2023-06-09 14:15 tibor.pacalat Note Added: 75520
2023-06-09 14:15 tibor.pacalat Bug heat 6 => 8
2023-06-12 21:48 gabrieljenik Note Added: 75565
2023-06-13 09:52 ollehar Note Added: 75575
2023-06-13 14:43 tibor.pacalat Note Added: 75601
2023-06-13 14:47 Changeset attached => LimeSurvey 5.x aeb2f4d9
2023-06-13 14:47 Changeset attached => LimeSurvey 5.x aeb2f4d9
2023-06-13 14:47 guest Note Added: 75602
2023-06-13 14:47 guest Note Added: 75603
2023-06-13 14:47 guest Bug heat 8 => 10
2023-06-13 14:47 guest Bug heat 8 => 10
2023-06-14 14:05 tibor.pacalat Status ready for merge => closed
2023-06-14 14:05 tibor.pacalat Resolution open => fixed
2023-06-14 14:05 tibor.pacalat Note Added: 75625
2023-06-14 14:17 Changeset attached => LimeSurvey master 3ee692cc
2023-06-14 14:17 Changeset attached => LimeSurvey master 3ee692cc
2023-06-14 14:17 guest Note Added: 75626
2023-06-14 14:17 guest Note Added: 75627