Hi,
I am trying to run some UI Controls in Eclipse. But I am getting this error.
Uncaught Error: failed to load 'sap/m/RadioButtonGroup.js' from resources/sap/m/RadioButtonGroup.js: 404 - Resource could not be found!
Code:
<mvc:View
xmlns:ui="sap.ui.core"
xmlns:l="sap.ui.layout"
xmlns:mvc="sap.ui.core.mvc"
xmlns="sap.m">
<VBox class="sapUiSmallMargin">
<Text text="An example with 'matrix' layout" textAlign="Center"/>
<RadioButtonGroup columns="3" width="500px" class="sapUiMediumMarginBottom">
<buttons>
<RadioButton id="RB1-1" text="Long Option Number 1"/>
<RadioButton id="RB1-2" text="Option 2" enabled="false"/>
<RadioButton id="RB1-3" text="Nr. 3" editable="false"/>
<RadioButton id="RB1-4" text="Long Option 4"/>
<RadioButton id="RB1-5" text="Option 5"/>
<RadioButton id="RB1-6" text="Nr. 6"/>
</buttons>
</mvc:View>