This is my Technical area of troubleshooting and learning new Programming skills and many more. Here you will find answers for many new technologies like asp.net 2.0/3.5,4.0 C# access, mysql, Amazon Webservice ,Sql-server, JD Edwards, SAS, Salesforce, APIs, MVC and many more. please visit & discuss.
Monday, August 31, 2020
Convert JD Edwards Julian date to calendar date PL SQL
Tuesday, August 18, 2020
Checkbox Click Event Sencha Ext JS
{
xtype:
'checkboxfield',
boxLabel: 'All Municipal',
name: 'AllMunicipal',
margin: '0 0 0 0',
listeners: {
change: function (checkbox, newVal, oldVal) {
if (newVal == '1' && oldVal == '0') {
var allCheckBoxes = checkbox.up('checkboxgroup').items.items;
for (var i = 0; i < allCheckBoxes.length; i++)
{
allCheckBoxes[i].setValue('1');
}
}
}
}
}
https://forum.sencha.com/forum/showthread.php?137463-Checkbox-Click-Event