Feb 25 2015
jTable jQuery Plugin File Upload Control
By default jTable jQuery Plugin does not allow to upload file and use File Upload HTML Control. Here I implemented jTableSample demo with File Upload Control. Step1: Create new field that will put <div> tag for our AJAX File Upload.
1 2 3 4 5 6 7 8 9 | FileUpload: { title: 'Customers File', list: false, create: true, edit: true, input: function (data) { return '<div id="FileUpload" name="FileUpload"></div>'; } } |
Step2: We will load AJAX File Upload on div which inserted in first step.(…)