Open the .js table, go to line 30 with the contents
width = formObj.elements['width'].value;
Change it to
width = formObj.elements['width'].value != "" ? formObj.elements['width'].value : 50;
Replace 50 with the initial width of the default table you want to set.
Hope this helps!
source share