Where do you edit / delete questions from quest bank?
Where do you edit / delete questions from quest bank?
In 4.05, I can't find where to edit / delete questions from the question bank.
There are no "edit" or "delete" icons under LMS/Course/Teacher Area/Quest Bank ?
(only option I can see is to add)
thanks,
There are no "edit" or "delete" icons under LMS/Course/Teacher Area/Quest Bank ?
(only option I can see is to add)
thanks,
Re: Where do you edit / delete questions from quest bank?
Hello,
it appears that Question bank in D405 is broken and needs fixing.
it appears that Question bank in D405 is broken and needs fixing.
---------------------
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
Massimiliano Ferrari
Elearnit - Elearning e Knowledge Management
https://www.elearnit.net
https://www.linkedin.com/in/massimilianoferrari
m.ferrari[at]elearnit.net
Skype: m_ferrari_it
Re: Where do you edit / delete questions from quest bank?
It's a problem with the js that handle the 'question bank' page.
To fix , you must edit ajax.quest_bank.js in folder doceboLms\modules\quest_bank with a text editor and add the above two lines just after line 259
The code before correction looks like
after
Here you can find the file already pached, you must unzip in your web folder
To fix , you must edit ajax.quest_bank.js in folder doceboLms\modules\quest_bank with a text editor and add the above two lines just after line 259
Code: Select all
, {key:"mod_quest", label:QB_DEF.mod_quest_img, formatter:this.formatModQuest}
, {key:"del_quest", label:QB_DEF.del_quest_img, title: 'Deletea', formatter:this.formatDelQuest}
Code: Select all
....
{key:"title_quest", label:QB_DEF.title_quest, formatter:this.formatTextQuest },
{key:"difficult", label:QB_DEF.difficult, formatter:this.formatDifficultQuest }
];
if(use_mod_action) {
...
Code: Select all
...
{key:"title_quest", label:QB_DEF.title_quest, formatter:this.formatTextQuest },
{key:"difficult", label:QB_DEF.difficult, formatter:this.formatDifficultQuest }
, {key:"mod_quest", label:QB_DEF.mod_quest_img, formatter:this.formatModQuest}
, {key:"del_quest", label:QB_DEF.del_quest_img, title: 'Deletea', formatter:this.formatDelQuest}
];
if(use_mod_action) {
...
- Attachments
-
- docebo405_patch-question.zip
- (4.33 KiB) Downloaded 360 times
Cercate nel forum le riposte prima di chiedere. Check the forum before posting
---------------
Claudio Anelli
Joint Technologies - Sistemi avanzati per l'information technology
http://www.joint-tech.com
---------------
---------------
Claudio Anelli
Joint Technologies - Sistemi avanzati per l'information technology
http://www.joint-tech.com
---------------
Re: Where do you edit / delete questions from quest bank?
The fix has been added to Forma Lms