I am facing with “XDB authentication popup dialog” for a long time. This usually happened when I tried to access the apex root url such as http://xxx.xxx.xxx.xx/apex. When I was accessing to the apex login page directly, such as http://xxx.xxx.xxx.xxx/apex/f?p=4550, everything was fine. So, I did not give importance to fix XDB authentication issue for […]
.glow is another unsupported / partially supported jquery method in different browsers. Chrome supports it & the website looks wonderful with this effect. IE however, doesn’t support & I had issues with Firefox. My code was like below $(‘.yellow’).on(‘mouseenter’, function () { $(this).glow({ radius: “20”, color: “#D7CD3A” }); }) .on(‘mouseout’, function () { $(this).glow({ radius: […]
I came across this issue yesterday midnight in one of my wordpress sites. Initially, I was shocked. Becoz I haven’t done any changes to this wordpress site for more than a month and it is not working suddenly. What happened???? The first problem was that any URL that you click will always show all the […]
I develop a PHP Zend Framework website. The table rows are displayed in table format using dataTables (www.datatables.net). The API is great and works wonderfully. My site is implemented in 2 languages currently – English(default) & German. So I tried implementing localization like given in http://www.datatables.net/examples/advanced_init/language_file.html I added this code in my .phtml file [PHP […]
My application references several DLL’s. Some of these DLL’s get their data from Web service. You might already know that the WebRefrence URI will be saved in config file. This config file will also be available in DLL’s bin folder. But when we add reference to the DLL in EXE, these DLL specific config files […]
I am now working on an application where there are lot of calculations involved. The calculated value is a decimal which may or may not have fraction digits. Also, the total no. of fraction digits is unknown. Now the problem is the decimal value had lot of trailing zeros. When I display this in UI, […]