SAPUI5 - JavaScript syntax errors are no longer being highlighted - sapui5

I'm working on a SAP Fiori Application -> SAPUI5 freestyle -> SAPUI5 Application project using SAP Business Application Studio and I noticed that the JavaScript syntax errors are no longer being highlighted.
Note: I don't remember making any changes to the settings.
Any idea where I can fix it?
Thanks!

Related

Fiori theme launchpad and controls are not working properly. Even the radio button in applications look different

Above images or fiori launchpad or controls are working properly for all other users except for one. As you can see, highlighted red one is the icon and in the 2nd image radio buttons are looking different. Not able to understand, if any role or authorization is missing.
UI Theme designer with version lower than 1.63 has some issues with fonts while generating themes for SapUI5/OpenUI5 version above 1.8x: check if in your Developer Tools console there are errors regarding .woff2 files.
It is a known problem as stated in this post : the UI Theme Designer Team implemented a specific fix for this starting from version 1.63.

Browse SAPUI5 source code

I require some information about the SAPUI5 core libraries. I want to read the source code of a particular control, for example sap.m.InputBase. Where can I find the source for this control? I googled it and found it's in the "InputBase.js" file but what steps do I need to follow to see the source code for this file?
Is there a way I can scroll through the controls in the sap.m library and then read the source code for the control?
OpenUI5
Most of the SAPUI5's libraries, which are opensource, can be browsed on GitHub. You can even browse different releases by selecting the respective branch:
Here is an example of InputBase from 1.48.
Or filter by filename.
SAPUI5
Some libraries aren't included in OpenUI5, such as:
sap.ui.comp
sap.ushell
sap.gantt
sap.viz
sap.ui.richtexteditor
In this case, download one of the SAPUI5 packages from here: https://tools.hana.ondemand.com/#sapui5 (Scroll down to "SAPUI5 Runtime"). This also allows us to browse the whole UI5 libraries offline without having to run the app.
it's to distinguish between openui5 and sapui5. openui5 is the open source clone of sapui5. openu5 is free to use. sapui5 is not. openui5 doesn't contain all controls that sapui5 contains. but openui5 contains all the important basic controls. the controls that are in sapui5 included but not in openui5 are controls like charts and smart contorls that e.g. are automatically configured by odata annotations.
find the source code for the most controls of sapui5 and all controls of openui5 in its github repository here. e.g. find the source code for the inputbase control in its github repository here.
find the source code of sapui5 or openui5 which is used by a sapui5 or openui5 application through the use of a debugger tool of a browsers on this sapui5 or openui5 application. e.g. to invoke the debugger tool of the chrome browser please press ctrl + shift + i.
find also the source code for the most controls of sapui5 and all controls of openui5 at the openui5 website here in the downloadable runtime and sdk packages of openui5.
find also the source code for the controls of sapui5 and openui5 the sap development website here in the downloadable runtime and sdk packages of sapui5.

How to understand the code flow in nuxeo

Recently I have downloaded the Nuxeo code, SDK and Nuxio IDE for the development purpose. I am also able to do build the project run the SDK and importing project into eclipse. But as Nuxeo guys know, it's a huge project and document doesn't contains details about the Code Flow. So, I am sucked. To develop and fix bugs I need to know the existing code structure, functionality of each projects(modules/bundles) , how to identify the code flow if user click on a button. So, please help me
It depends on the UI you want to debug. If it's the JSF UI, then the buttons are usually associated with an "action" contributed from an XML file. You can then follow the thread.
Your question is too much generic to give you more details. Do look for development guidelines and/or how-to fix some bugs? In the latter case, it depends on each kind of bug, the Nuxeo version, the original code writer (Nuxeo legacy code or customized code), the use of Nuxeo Studio or not...

ajax toolkit controls grayed out due to designer compatability or framework

I have converted my project from visual studio 2005 to Visual studio 2012. I am using.Net frmawork version 4.5.and i want to add ajax control toolkit in my project.i have created new control with named ajax and add items from browsing ajax toolkit 4.5.after clicking ok popup is displayed showing controls are added sucessfully but make sure framework version and design compatability.please give me a solution.i have tried all solutions.
I got solution for this issue,Goto property pages and in build option select appropriate version on ajax control toolkit

Eclipse RCP - ApplicationWorkbenchWindowAdvisor - setShellStyle(SWT.MIN) not working

We have developed an eclipse rcp application using 3.5 and are trying to move it to 4.2.1.
It is a simple RCP application with a view. On doing the basics and launching it I found that the setShellStyle(SWT.MIN) is not working anymore. Since it was a single view application, it didnt require re-sizing, hence we had disabled re-sizing using this API.
But with the new Eclipse (Eclipse 4.2.1), the re-size/maximize button is enabled even when this method is called. I have verified that other APIs called from here work (other than this I used setShowStatusLine(false) and setShowCoolBar(false).
Is this a known problem with Eclipse 4 or whether there is a different API to get this functionality working with this.
I appreciate any kind of help I can get here.?