Full width of component within SAP Fiori Launchpad [duplicate] - sapui5

This question already has answers here:
How to disable letterboxing and adjust UI5 for the widescreen?
(5 answers)
Closed 18 days ago.
Is it possible to configure a component which is embedded in a launchpad to use the full width of the screen?

The manifest.json needs to be adjusted like that:
...
"sap.ui": {
"fullWidth": true
...
}
...
References:
https://sapui5.netweaver.ondemand.com/#/topic/be0cf40f61184b358b5faedaec98b2da
https://experience.sap.com/fiori-design-web/full-screen/
https://experience.sap.com/fiori-design-web/letter-boxing/

The answer is: you shouldn't.
...to keep in line with SAP's UX strategy. If it comes to standard apps you are breaking the UX between your apps. If you requirement is to build a large and complex app which requires that width you are also failing UX strategy... just keep that in mind ;-)

Related

Google Area Charts - Select all data sets for date - Combined Tooltip [duplicate]

This question already has answers here:
customizing tooltip with multiple values
(2 answers)
Closed 2 years ago.
I'm trying to replicate the behaviour of Google Analytics Charts in my own app using the Google Charts Api.
In Google Analytics whenever i'm hovering over a date both data sets are selecting and i get a combined tooltip of both values for that date.
Can't find anything in the docs here: https://developers.google.com/chart/interactive/docs/gallery/linechart ... and nothing on Google also.
LE: as i figured out the GA charts are Area Charts and not line charts:
Checked: https://developers.google.com/chart/interactive/docs/gallery/areachart but still can't find a way to mimic the behavior of GA charts ...
For those who are looking for this, the answer is the focusTarget property:
focusTarget: 'category'

SAP Fiori: Show 'My Leave Requests' in days instead of hours

When requesting a leave in Fiori the pop up shows the away time in hours instead of days:
Is there a possiblity that instead of for example 15,00 hours the pop-up shows 2 days?
Beware that many stuff in Fiori applications can also be customized by customizing your default SAP application. If your default in leave request is in hours, then that is what this Fiori app will show. Change it to days and that will be what Fiori will show.
In case you have a specific requirement to make this deviate solely in the app, then indeed you need either an extension point or create a custom implementation.
Here some additional links:
Preffered method
Old-fashioned
From what it looks like, you are asking to change a standard, delivered app?
If so, it is only possible to change it, if an Extension Point is provided at the desired place and then adapt the extended code. Check the documentation for App Extensibility: My Leave Requests.
In any case, if you haven't gone through the documentation for the app itself, with the possible customizations, check the My Leave Requests Fiori app documentation

What control could I use to show text in multiple columns?

I'm wondering what is the multicolumn text control used in "News App", in Windows 8:
I have seen this microsoft example where they use fixed RichTextBlock and RichTextBlockOverflow inside a grid. There must be a better way to do this (I hope). Do you know how?
Unfortunately that's the best way to do it, if you are creating your app in XAML. However, if you are creating creating your app using HTML5/JavaScript you can achieve this using CSS Overflow Properties.
There is a video from the BUILD conference 2012, showing how this is done:
Key technologies for building great reading experiences
- the overflow part begins after around 20 minutes.
Note: The video talks about the possibilities and limitations of both HTML5 and XAML, and shows how it's done.

GWT ComboBox isn't working after SmartGwt Integration [duplicate]

This question already has an answer here:
Closed 10 years ago.
Possible Duplicate:
Smart Gwt components are not rendered in html div tag
My problem is that I had a project which was running gwt widgets nicely. Now for some client requirements, we introduced some smartGwt changes in it.
The problem is that all those requirements have been done successfully, but as a result or something, the previous ComboBox dropdown isn't working, none of them. Please help.
Do I have to post the code also (because its too large)? If you want it, I will try to paste it here.
Thanks in advance.
What do you mean by "isn't working". There are zindex issues when you use Gwt and Smartgwt side by side. You can have a look at this thread ( here)if it's this sort of problem. If not give us more details.

form registeration using an iPhone app [duplicate]

This question already has answers here:
Existing iOS form framework
(3 answers)
Closed 8 years ago.
Is there a way in iOS app programming that I can make an user fill up a form for registration? I mean do we have a template for that available already? Also I wanted to know that does it support something like EDIT where in if a user makes a typo then the fields along with checkboxes get auto-populated and one can update a required field?
Here's a framework for providing forms in-app:
http://www.cocoacontrols.com/platforms/ios/controls/ibaforms
As for the autocorrect thing, that is a customizable property of most, if not all, of the default iOS text-entry fields.