Difference between revisions of "Upload images in questionnaire"

From Catglobe Wiki
Jump to: navigation, search
(Source)
(Tag: visualeditor)
Line 61: Line 61:
  
 
We will call the workflow in step 2 to get the new created folder id of recipient
 
We will call the workflow in step 2 to get the new created folder id of recipient
 
=== Step 3.2 : Add the following script to the questionnaire ===
 
 
Paste this code below into Javascript tab of the questionnaire
 
 
<source lang="javascript" line="1">
 
/*---------------------------------------------------------------------------------------------------------------
 
Server info
 
---------------------------------------------------------------------------------------------------------------*/
 
var ServerInfo =
 
{
 
  "rootPath" : window.location.protocol+"//"+window.location.host
 
}
 
 
 
/*---------------------------------------------------------------------------------------------------------------
 
ResourceType enumeration
 
---------------------------------------------------------------------------------------------------------------*/
 
var ResourceType =
 
{
 
  "Folder":"Folder"
 
};
 
 
 
//
 
// IFrame
 
//
 
function IFrame(parentElement) 
 
 
  // Create the iframe which will be returned 
 
  var iframe = document.createElement("iframe"); 
 
 
 
  // If no parent element is specified then use body as the parent element 
 
  if(parentElement == null) 
 
      parentElement = document.body; 
 
 
 
  // This is necessary in order to initialize the document inside the iframe 
 
  parentElement.appendChild(iframe); 
 
 
  // Get the document object of the IFrame
 
  iframe.getDocument = function()
 
  {
 
      // Depending on browser platform get the iframe's document, this is only 
 
      // available if the iframe has already been appended to an element which 
 
      // has been added to the document 
 
 
      var doc;
 
 
      if(this.contentDocument) 
 
        // Firefox, Opera 
 
        doc = this.contentDocument; 
 
      else if(this.contentWindow) 
 
        // Internet Explorer 
 
        doc = this.contentWindow.document; 
 
      else if(this.document) 
 
        // Others? 
 
        doc = this.document;
 
 
      // If we did not succeed in finding the document then throw an exception 
 
      if(doc == null) 
 
        throw "Document not found, append the parent element to the DOM before creating the IFrame";
 
 
      return doc;
 
  }
 
 
  // Set iframe source
 
  iframe.setSource = function(src)
 
  {
 
      // Set the source
 
      this.src = src;
 
 
      // Initialize the iframe's document
 
      this.doc = this.getDocument();
 
 
      // Open and close the iframe's document, this will allow us to manipulate
 
      // the iframe's contents by script
 
      iframe.doc.open(); 
 
      iframe.doc.close(); 
 
  }
 
  // Set iframe source
 
  iframe.setWidth = function(width)
 
  {
 
      // Set the width
 
      this.width = width;
 
  }
 
  // Set iframe source
 
  iframe.setHeight = function(height)
 
  {
 
      // Set the height
 
      this.height = height;
 
  }
 
 
  // Initiate the iframe's document property
 
  iframe.doc = iframe.getDocument();
 
 
 
  // Open and close the iframe's document, this will allow us to manipulate
 
  // the iframe's contents by script
 
  iframe.doc.open(); 
 
  iframe.doc.close(); 
 
 
 
  // Return the iframe, now with an extra property iframe.doc containing the 
 
  // iframe's document 
 
  return iframe; 
 
}
 
 
/*---------------------------------------------------------------------------------------------------------------
 
AttachmentList question control
 
---------------------------------------------------------------------------------------------------------------*/
 
 
function ImageList(elementContainer, width,height,viewimage)
 
{
 
  this._elementContainer = elementContainer;
 
this._iframe = new IFrame(this._elementContainer);
 
$(this._iframe)
 
.attr("id", "ImageListIFrame")
 
.bind("load",
 
function()
 
{
 
if(this.src == '')
 
return;
 
if (viewimage == "off")
 
{
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_main').hide();
 
$('#ImageListIFrame').contents().find('#Imagesxtoolbar_Item_1').hide();
 
$('#ImageListIFrame').contents().find('#Imagesxtoolbar_Item_2').hide();
 
$('#ImageListIFrame').contents().find('#Imagesxtoolbar_Item_3').hide();
 
 
}
 
else
 
{
 
$('#ImageListIFrame').contents().find('#Imagesxtoolbar').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_c_0_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_0_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_1_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_2_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_3_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_4_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_5_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_6_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_7_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_8_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_9_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_10_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_11_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_12_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_13_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_14_2').hide();
 
$('#ImageListIFrame').contents().find('#ImagesximageGrid_rc_15_2').hide();
 
}
 
});
 
if (width != null)
 
  this._iframe.setWidth(width);
 
if (height != null)
 
  this._iframe.setHeight(height);
 
}
 
 
//ImageList.path = "{rootPath}/Common/Resources/View/ContainerPage.aspx?tabtype=Images&type={type}&id={id}&isportal=false";
 
ImageList.path = "{rootPath}/Common/Resources/View/ContainerPage.aspx?tabtype=Images&type={type}&id={id}&isportal=false";
 
 
ImageList.prototype =
 
{
 
 
 
  createImageListUrl: function(type, id)
 
  {
 
      return ImageList.path
 
        .replace("{rootPath}", ServerInfo.rootPath)
 
        .replace("{type}", type)
 
        .replace("{id}", id);
 
  },
 
 
 
  setFolderId: function(FolderId)
 
  {
 
      $(this._iframe)
 
        .attr("src", this.createImageListUrl(ResourceType.Folder, FolderId));
 
  },
 
 
  getImages: function()
 
  {
 
      var Name = 1;
 
      var nameList = new Array();
 
 
      with(this._iframe.contentWindow)
 
      {
 
 
 
       
 
        var grid = getCGExecuter().getGridUtilities().getGrid(__gridClientId);
 
 
        for (var rowIndex = 0; rowIndex <grid.Rows.length; rowIndex ++)
 
        {
 
           
 
            nameList.push(grid.Rows.rows[rowIndex].getCell(Name).getValue());
 
 
        }
 
      }
 
 
      return nameList;
 
  },
 
  /* getGUIDs: function()
 
  {
 
      var Name = 2;
 
      var nameList = new Array();
 
     
 
      with(this._iframe.contentWindow)
 
      {
 
 
 
        var grid = getCGExecuter().getGridUtilities().getGrid(__gridClientId);
 
        var guidtext;
 
        for (var rowIndex = 0; rowIndex <grid.Rows.length; rowIndex ++)
 
        {
 
          guid = grid.Rows.rows[rowIndex].getCell(Name).getValue();
 
            nameList.push(jQuery.trim(guid.split('<a')[0]));
 
 
        }
 
      }
 
 
      return nameList;
 
  }
 
*/
 
  getGUIDs: function()
 
  {
 
      var Name = 2;
 
      var nameList = new Array();
 
      with(this._iframe.contentWindow)
 
      {
 
 
      guid = '{{D_GUID}}';
 
      alert("nham"+guid);
 
      nameList.push(jQuery.trim(guid.split('<a')[0]));
 
      }
 
      return nameList;
 
}
 
}
 
/*---------------------------------------------------------------------------------------------------------------
 
End JAVA_SCRIPT of QUESTIONNAIRE
 
---------------------------------------------------------------------------------------------------------------*/
 
</source>
 
  
 
=== Step 3.3 : Create the question for showing the upload form  ===
 
=== Step 3.3 : Create the question for showing the upload form  ===

Revision as of 04:47, 8 April 2019

Introduction

We have a client who wants respondents to be able to upload images in a questionnaire

Solution

When the recipient open the answer sheet to answer, we will create the new folder whose name is recipient's name under the questionnaire then store the images that the he uploads in the image tab of this new created folder.

How to do it

Requirement

  • The user template of the recipients must have the navigation access to open the Image tab of the Folder and upload the images in this image tab.

Step 1: Preparation

  • In the group list, create the group containing the recipients and grant the needed navigation accesses to this group
  • In the folder list, create the folder containing all the recipient's folder.
  • Check the folder template resource id that the folder will use.

Step 2: Create the new folder for the recipient

(You can see the script in the workflow whose resource id is 45408 in cg.catglobe.com)

 1 array para = Workflow_getParameters();
 2 number userId = para[0];
 3 
 4 number ImageFolderResourceId = 45406;
 5 number FolderTemplateResourceId = 2071;
 6 
 7 array newFolder ;
 8 number userResourceId = User_getResourceIdFromUserId(userId);
 9 array userinfo = User_getUserByResourceId(userResourceId);
10 string ExistedFolderName = getNameFromResourceUniqueId(ImageFolderResourceId) + "\\"+ userinfo[USER_NAME];
11 array ExistedFolder = Folder_getFolderByName(ExistedFolderName);
12 
13 if (ExistedFolder == empty) 
14 {
15 newFolder = Folder_new(userinfo[USER_NAME],FolderTemplateResourceId ,ImageFolderResourceId); 
16 Folder_save(newFolder);
17 }
18 else 
19 {
20 newFolder = ExistedFolder ;
21 }
22 array permissions = {{userId , "FullControl"}};
23 updateUserPermission(newFolder[FOLDER_RESOURCE_ID], permissions);
24 string guid = getResourceGuid(newFolder[FOLDER_RESOURCE_ID]);
25 return getResourceIdFromGuid(guid);


Step 3: Set up the questionnaire

(You can see the questionnaire whose resource id is 1219174 in cg.catglobe.com)

Step 3.1 : Create the dummy question for storing the folder id

We will call the workflow in step 2 to get the new created folder id of recipient

Step 3.3 : Create the question for showing the upload form

Paste this code below into Javascript tab of that question

 1 Question.bind('afterShowQuestion', function(question, answerSheet, element) {
 2   $('.cg-ui-input').hide();
 3 var folderid = '{{D_Current_Folder_Id}}';
 4 var dlg;  
 5    $.getScript("../../Script/ServerMethods/ServerMethods.js", function(){
 6    		$.getScript("../../Script/XmlParser/xmlp.js", function(){
 7     		ServerMethods.registerMethod(new Method(TYPE_ARRAY,'GetImageInfo',false,null,'~/Common/Resources/View/ImagesTab.ascx',new Parameter(TYPE_INT, 'imagepk')));
 8     		openImagedialog();
 9   		});
10    });//END getScript LV1
11 //SUB FUNCTION
12   function openImagedialog() {
13     window.getActiveDialog = function(body) {
14       var strBody = $(body).prop('outerHTML');
15       var imageId = parseInt(strBody.substring(strBody.lastIndexOf("addList(")+8,strBody.lastIndexOf(",'Add')")));
16       //console.log(imageId);
17       Question.attr('answer', imageId);
18       //console.log(Question);
19       $(parent.document).find('.ui-widget-overlay').remove();
20       $(parent.document).find('.ui-dialog').remove();
21       $('#comUp').text('An Image has just been uploaded. Please click "Next" button to continue');
22      
23       return {papa: {}};
24     };
25 	var virtualAppHost = window.location.origin;
26     var url = virtualAppHost + "/Common/ResourceExplorer/EditImagePage.aspx?afn=Images/Resources&parenttype=6" +
27 		"&parentid=" + folderid;
28 	var $dialog = $('<div></div>')
29                .html('<iframe style="border: 0px; " src="' + url + '" width="100%" height="100%"></iframe>')
30                .dialog({
31                    	autoOpen: false,
32                    	modal: true,
33                    	height: 190,
34                    	width: 463,
35                  	title: "Add new image"
36                });
37 	$dialog.dialog('open'); 
38 }
39   
40  });

Source

Questionnaire Resource Id on cg.catglobe.com site: 1219174