Insertion of values in database

You can’t simply place the IDs of your inputs as the WL.client.invokeProcedure‘s parameters… You need to pass their value. For example: function loadFeeds1(){ var invocationData = { adapter:”car2″, procedure:”getuser”, parameters:[$(‘#carnum’).val(),$(‘#details’).val()] }; WL.Server.invokeProcedure(invocationData,{ onSuccess :loadFeedsSuccess1, onFailure :loadFeedsFailure1, }); } This is an end-to-end scenario, where I take 2 values from the HTML and insert them into … Read more