How could I combine the two models which i have kept for two different purpose. One is to for file upload and the other is for render data from different object.Below is the respective html and JS i tried.
HTML section
     <div class="well" data-bind="fileDrag: fileData">
        <div class="form-group row">
           <div class="col-md-6">
              <img style="height: 125px;" class="img-rounded  thumb" data-bind="attr: { src: fileData().dataURL }, visible: fileData().dataURL">
              <div data-bind="ifnot: fileData().dataURL">
                 <label class="drag-label">Drag file here</label>
              </div>
           </div>
           <div class="col-md-6">
              <input type="file" data-bind="fileInput: fileData, customFileInput: {
                 buttonClass: 'btn btn-success',
                 fileNameClass: 'disabled form-control',
                 onClear: onClear,
                 }" accept="application/pdf,image/*">
           </div>
        </div>
     </div>
     <button class="btn btn-default" data-bind="click: debug">Upload</button>
  </div>
  <div id="notification" style="display: none;">
     <span class="dismiss"><a title="dismiss this notification">X</a></span>
  </div>
     <!-- Collapsible Panels - START -->
     <div class="container">
        <div class="row">
           <div class="col-md-12">
              <div class="panel panel-primary">
                 <div class="panel-heading">
                    <h3 class="panel-title">Plan Details</h3>
                 </div>
                 <div class="panel-body">
                    <span class="glyphicon glyphicon-plus clickable" id="addPlanBtn"></span>
                    <span class="glyphicon glyphicon-remove clickable" id="removePlanBtn"></span>
                    <span class="glyphicon glyphicon-edit clickable" id="editPlanBtn"></span>
                    <table id="docsDataTable" class="table table-striped display" width="100%">
                       <thead>
                          <tr>
                              <th></th>
                              <th>Contract Document ID</th>
                              <th>Contract ID</th>
                              <th>Document Name</th>
                              <th>File Path</th>
                              <th>Comments</th>
                          </tr>
                       </thead>
                    </table>                        
                    <div class="modal fade" id="notificationDialog" role="dialog">
                       <div class="modal-dialog modal-sm">
                          <div class="modal-content">
                             <div class="modal-header">
                                <button type="button" class="close" data-dismiss="modal" \>×</button>
                                <h4 class="modal-title">Notification</h4>
                             </div>
                             <div class="modal-body" id="notificationBody">
                             </div>
                             <div class = "modal-footer">
                                <button type = "button" class = "btn btn-primary" data-dismiss = "modal">
                                   Ok
                                </button>
                             </div>
                          </div>
                       </div>
                    </div>
                    <div class="modal fade" id="confirmBox" role="dialog">
                       <div class="modal-dialog modal-sm">
                          <div class="modal-content">
                             <div class="modal-header">
                                <button type="button" class="close" data-dismiss="modal" \>×</button>
                                <h4 class="modal-title">Confirmation</h4>
                             </div>
                             <div class="modal-body" id="confirmBody">
                                   Selected rows will be made inactive.
                             </div>
                             <div class = "modal-footer">
                                <button type = "button" class = "btn btn-default" data-dismiss = "modal" id="confirmNoBtn">
                                   Cancel
                                </button>
                                <button type = "button" class = "btn btn-primary" data-dismiss = "modal" id="confirmYesBtn">
                                   Ok
                                </button>
                             </div>
                          </div>
                       </div>
                    </div>
                 </div>
              </div>
           </div>
        </div>
     </div>
Javascript section to bind the data
     var dataset;
     var docsModel;
     var docsTable;
     var vasTypes;
     $(function(){
       var viewModel = {};
       viewModel.fileData = ko.observable({
         dataURL: ko.observable(),
         // base64String: ko.observable(),
       });
       viewModel.onClear = function(fileData){
         if(confirm('Are you sure?')){
           fileData.clear && fileData.clear();
         }                            
       };
       viewModel.debug = function(){
         window.viewModel = viewModel;
         //console.log(ko.toJSON(viewModel));
     fileUpload(viewModel);
         debugger; 
       };
       ko.applyBindings(viewModel);
     });
     $(document).ready(function(){
        docsModel = new $.cordys.model({
              context: document.getElementById("addPanelForm"),
              objectName: "CONTRACT_DOCUMENT",
              fields: ["CONTRACT_DOCUMENT_ID" , "CONTRACT_ID" , "DOCUMENT_NAME" , "FILE_PATH" , "COMMENTS"],
              defaults: {
                 namespace: "http://services.vw.com/lpms/1.0/wsapp"
              },/*
              update: {
                 method: "UpdatePlanVas"
              },*/
              read: {
                 method: "GetContractDocumentObjectsForContractId",
                 parameters: {
                         CONTRACT_ID: "CONTRACT_1000"                           
                         },
              }
        });      
        GetContractDocumentObjectsForContractId();
        docsTable = $('#docsDataTable').DataTable({
           data: dataset,
           columnDefs: [ {
              orderable: false,
              className: 'select-checkbox',
              defaultContent: "",
              targets: 0},
           { data: "CONTRACT_DOCUMENT_ID",
              targets: 1,
              visible: false},
           { data: "CONTRACT_ID",
              targets: 2},
           { data: "DOCUMENT_NAME",
              targets: 3},
                { data: "COMMENTS",
              targets: 5},
           { data: "FILE_PATH",
              targets: 4}],
           select: {
              style:    'multi',
              selector: 'td:first-child'
           },
           order: [[ 1, 'asc' ]],
           "searching": false,
           "lengthChange": false
        });
     });
     function fileUpload(data){
     dataObject=ko.toJS(viewModel);
     fileName=dataObject.fileData.file.name;
     fileContent=dataObject.fileData.dataURL.split(',')[1];
           $.cordys.ajax({
               method: "WriteFile",
     parameters: {
     filename: fileName,
     encoded: "true",
     data:fileContent
     },
               namespace:"http://schemas.cordys.com/1.0/ac/FileConnector",
               dataType: "* json",
               async: false,
               success: function(e){
     $.notify("Yeah ! File Uploaded", "success");
               }
            });
        }
 
    