This is my technical area for troubleshooting and learning new programming skills and much more. Here, you will find answers on a wide range of technologies such as AI, Machine Learning, OpenAI, Databricks, ASP.NET, C#, Python, Microsoft Access, MySQL, Amazon Web Services, SQL Server, PL/SQL, JD Edwards, SAS, Salesforce, APIs, MVC, and many others. Please feel free to visit and join the discussion!
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