Re: setValueState(sap.ui.core.ValueState.Error) works but lasts lessthan 1...
It works thanks! now if the validation is correct i use "return Success" and it marks it as ok I still don't understand why does't work with the other method but for now is fine for me. thank-you
View ArticleRe: Binding models together in sapui5 / mapping paths between models
Hi Angel, I think I found a solution myself, at least in parts: I set up control which is not rendered but has two items in the CustomData Aggregation being bound to one model, respectively. Then you...
View ArticleRe: Add loading indicator as sending OData request
You can show a busy control by: var busyDialog = (busyDialog) ? busyDialog : new sap.m.BusyDialog('busyDialog',{text:'Loading Data', title: 'Loading'}); While, anyone knows how similar thing can be...
View ArticleRe: oData update
Hi John, The press is an event handler for a button. It works fine when I copy the values to separate fields and then push them into the table (oData update). For Ex: The below code works function...
View ArticleTag cloud like widget
Is a tag cloud like widget available in SAP UI5 ? regards,sreeram
View ArticleRe: setValueState(sap.ui.core.ValueState.Error) works but lasts lessthan 1...
Let me say you the reason why it didn't work in the first place,on change you're doing, OrderCodeText.setValueState(ComprobarOrden(OrderCodeText.getValue()); // function ComprobarOrden gets called on...
View ArticleRe: Tag cloud like widget
Hi Sreeram,There's nothing similar. But you can create your custom controls: Documentation/AdvancedTopics/OnTheFlyControlDefinition – SAPUI5 Wiki (TIP CORE User Interface) Cheers!
View ArticleRe: Tag cloud like widget
use any jqeury plug-in for tag cloud, one of these http://plugins.jquery.com/tagcloud/
View ArticleRe: Data binding for nested controls/elements
@Frank, @Angel, thank you both so much... works perfectly. Have a better understanding on binding now thanks to you too!
View ArticleScrollToIndex with sap.m.List?
I know that the normal List Object has a scrolltoindex method and the mobile list doesnt (at least I havent found it yet). My problem is that I have some pages in a carouel and each page has a List. On...
View ArticleRe: How to set dynamic "id"s ?
The API Reference in the SDK is your friend. Specify the id as the 1st parameter.
View ArticleRe: Converting SAPUI5 application to OpenUI5
For some apps a simple change to the bootstrap URL should suffice. For others, it depends on the libraries that are being used ... there are a few currently not in the OpenUI5 version. You can get a...
View ArticleRe: How to set dynamic "id"s ?
Thanks for your answer. I tried that way as well. I still get the same error.var resData = "1";new sap.ui.commons.RadioButton(resData).placeAt("content"); Am I doing anything wrong?
View ArticleRe: How to set dynamic "id"s ?
It seems to me like when an "id" is starting with a number, then it is not accepting. Irrespective of the assignment being static or dynamic, if "id" has any value starting with number, then I am...
View ArticleRe: How to set dynamic "id"s ?
Yep, starting with digits not allowed /** * @class A string type representing an Id or a name. * * @static * @public */ sap.ui.core.ID = sap.ui.base.DataType.createType('sap.ui.core.ID', { isValid...
View ArticleUnable to find the SAPUI5 Plugin
Hi, Can anyone suggest me on downloading the SAPUI5 plugin for the eclipse. I tried, however I am unable to download the plugin from the developer centre community. Regards,Narendra.
View ArticleRe: Unable to find the SAPUI5 Plugin
Hi Narendra, For downloading the toolkit for SAP UI5 go to the below linkSAP Development Tools for Eclipse,SAP Development Tools for Eclipse - Juno Software Repository After downloading the tool, go to...
View ArticleRe: Unable to find the SAPUI5 Plugin
Which version of Eclipse you are working on. Check the eclipse version ( go to help --> about eclipse ) According to the eclipse version try the following plugin links as belowTry the following...
View ArticleRe: How to set dynamic "id"s ?
You can even use the UI5 inbuilt function to setup dynamic id, jQuery.sap.uid() SAPUI5 SDK - Demo Kit
View Article