jquery-tabledit icon indicating copy to clipboard operation
jquery-tabledit copied to clipboard

TypeError: undefined is not a function (near '...$('#editable_table').Tabledit...')

Open BvdPijl opened this issue 7 years ago • 1 comments

Hi,

I am new to query programming and I could not figure out what the problem is. It seems that the class "Tabledit" could not be found or something. The code is below.

Does anyone know the cause of this problem?

Code: $(document).ready(function(){ $('#editable_table').Tabledit({ url: 'action.php', columns: { Identifier:[0,"ID"], editable:[[1, 'Ecode'], [2, 'ItemName']] }, restoreButton: false, onSucces:function(data,textStatus,jqXHR){ if(data.action == 'delete') { $('#'+data.ID).remove(); } } }); });

BvdPijl avatar Feb 03 '18 14:02 BvdPijl

try swapping the link library and your handler function @

gayanov avatar Mar 04 '18 17:03 gayanov