So for example, say on one table when the Qty is changed I want the Cost column to autocalculate and trigger a warning if the cost is above a certain value.
I load up my javascript like this...
$this->ajax->loadScript("
$(function() {
var tbl = new Tablev2('beta');
tbl.init({'mysqlTable':'msr_data'});
tbl.ajaxDD('tid',{'text':'abbr','tbl':'budget_cats','locked':true});
tbl.ajaxDD('mid',{'text':'description','values':'mid','tbl':'modules','width':400,'numChars':2,'locked':true});
tbl.ajaxDD('sid',{'text':'description','values':'old_pav_sid','tbl':'systems','width':400,'numChars':2,'locked':true});
tbl.ajaxDD('manufacturer',{'text':'manufacturer','tbl':'msr_data','width':200,'numChars':1});
tbl.ajaxDD('line_description',{'text':'line_description','tbl':'msr_data','width':600,'numChars':2});
tbl.customChangeEvent('sid','getBudget');
tbl.customChangeEvent('per_unit_cost','calculateCost');
tbl.loadCustomMysql('tid',{'tbl':'budget_cats','matchField':'abbr','returnField':'bid','int':1});
tbl.loadCustomMysql('sid',{'tbl':'systems','matchField':'old_pav_sid','returnField':'sid','int':1});
});
");
How can I type up the function within the $this->ajax->loadScript function so I do not have to actually manipulate the object but still use the variables within the object? The way I do it now is through the tbl.customChangeEvent() and then I just write the function in the class itself. I want to be able to write the function on the script that is creating the table.
Any help will be greatly appreciated. Thanks












