My question is about the Flow Decision designer object. Can I change the sides that the "True", "False", and Inputs come from? Currently, True is always to the left, False on the Right, and input is at the top or the bottom. Naturally some flows become very "Messy" because of this. I know that I can always 'Not' the condition to switch the true and false, but that is sloppy. Thanks!
No, there is no way to swap those around.
Personally I would prefer the true option to go down and false to go sideways, that is the way I learned to draw flowcharts way back when I started programming but this is the way it is.
I suggest adding a request on User Voice here.
Related
i have a question.
Why is the style of the view a different one in the launchpad as without ?
Its kinda annoying because some of the labels or inputs sometimes gets readjust and than it is not clean. The ui looks way smaller, can it be fixed? I tryed already to put "fullWidth": true in the manifest but yeah no changes.. when i open the dev menu and delete the sapUiSizeCompact from the body in the launchpad then it looks normal. But i did never set the sapUiSizeCompact is there a way to remove it?
Example:
Not launchpad
In the Launchpad
i found a way but it seems you have to set it per user.. i am not really happy but maybe someone know how to do it as a standard so the user dont have to set it by deafult. You can set this option in the settings of the flp
First time here, I hope I'm doing it right and I hope I'm allowed to ask this here.
I'm making buffer layers out of points in QGIS 3.8.1 Zanzibar, it's 5 point layers and I need to generate the 5 corresponding buffers. They come out alright, but after I load a previously saved style for the layers the geometries simply disappear.
I have:
Ticked layer off and on, still gone.
Deactivated any other layer and make sure it's not hidden behind something else.
Zoomed to layer, not the problem, it zooms where they should be, they're just not visible
Checked for SRC, it's all good, all of them are the same.
Open attribute table, all the data is there and it's correct.
Left click on layer/layer visibility and made sure it is unchecked as it should, I also tried checking it to no avail.
Made the layers all over again, same result.
Went to Properties/Source/Query Builder and wrote this (I saw this in a vid where it worked):
"FIELD" LIKE "FIELD"
Where "FIELD" is a field of my attribute table, tested it correctly and applied...didn't work either.
Just one seemed to come out alright before doing all this, but I followed the exact same procedure for all of them.
Any ideas? Do I have to re-do the style all over again manually for every layer?
Thanks in advance!
I just found out what was wrong, I hope this helps someone in the future:
The style I saved was classifying data based on a particular column, wich of course, must exist and have the exact same name in the other layers in order to work. I just forgot to generate said column on the rest of the layers.
Cheers and thanks to the editor.
this is my very first entry here, may it not be the last....
I am having a bit of a struggle with some GUI stuff.
I really have an animation up front my eyes and it should look like the following: using c# with desktop application.
This Form looks like a login window with server address, username and pw textboxes and with a connect button as well, so nothing special. Size wise it can be small or at least same as size as the turned window. doesnt matter at the end.
once you entered your credentials and all turns out to be fine, connection is there and valid.
The main Form is suppost to flip then (doesnt matter horizontal or vertical),
and shows you your options you got then in this newly window. kind of an animated sign, that you are logged in and have now these options.
But the flip is suppost to stay on the same place. Like a card flip or a coin flip, but just the whole form and it ends then at the same place as before.
(sounds really wired to explain)
This can also be done with a new form poping up, just with a animated turn over, no problem with that.
And this is exactly where I am stuck.
I really cant find any information on how this would look like in code or even in animation.
I am using c# and the basic project started as a desktop application project, which it will be at the end.
Its been a while since my last coding, please be gentle.
i know there are plenty of entries in here also in google as well, but i didnt found anything which will do this for the main window as a total. images etc: yes, but for the whole form: no.
Any help out there?
May be tehr eis a trick i am not aware of? Its been a while since the last coding work, I need to admit that.#greyhairsarecomming
many thanks in advance! much appreciated
kind regards TG
I'm completely new to mapbox and was just exploring api docs for a small project I'm currently working on.
One thing I want to do, but could not find anywhere (which is why I believe it may not be possible) is to put GeolocateControl together with NavigationControl button group.
Does anyone know whether it is actually doable?
What I have so far is two calls to addControl, which place one in the top-left - the other top right corner of the map.
window.currentMap.addControl(new mapboxgl.NavigationControl(), 'top-left');
window.currentMap.addControl(new mapboxgl.GeolocateControl({
positionOptions: {
enableHighAccuracy: true
},
trackUserLocation: true
}));
You can place both controls in the same corner. For instance, at opentrees.org, both are in the bottom right corner.
In your case, just change your last line to }), 'top-left');
If you need them to be even closer, or more "together" in some way, overriding the Mapbox-GL CSS (as Andrew suggested) is the correct approach.
Is there any chance of getting this above switch implemented? Any reference source would be helpful.
You can create Custom switch button with the Help of image. Create a switch button (Set Alpha below to 1) and place a image above UISwitch it will work perfect.
https://github.com/samvermette/SVSegmentedControl
https://github.com/samsoffes/sstoolkit
https://github.com/alinux/iPhone-custom-switch-UIView
This isn't going to be an answer to solve your question, as it is going to be more of a piece of UX advice.
This type of switch goes against Apple's HIG.
You should never display a segmented control or switch where the user will not be able to tell when the control/switch is "On" or "Off". If I were someone who hadn't used switches in an iOS application before, I would not be able to tell what's "On" or "Off" in the image above. It may be easy for you to determine this, but you need to consider the possibility of someone (with less intuition than you) using your application.
Hope this helps.
Take a look at this replacement UISwitch project.