I have looking everywhere for this kind of problem, but I have found nothing about it. Is there possible to update custom settings using just javascript code in Salesforce?
Custom Settings can be accessed using:
<script type="text/javascript">
var url = "{!$Setup.MyCustomSet__c.URL__c}";
alert(url);
</script>
There is solution to pass javascript variable to Apex and then insert in custom settings, but i am looking for direct way of doing that. Any direction would be great.