Ionic Actionsheet horizontal buttons - ionic-framework

How can we add horizontal buttons and text field in Ionic Actionsheet.
can we retrive data from textfield. i am able to create buttons vertically, not able to add buttons vertically and get text from textfield.

I think you cannot manipulate actionsheet style as cordova use the native of each platform. If you need custom action sheet you may build actionsheet-like component by yourself or you can use Angular Material Bottom Sheet

The Actionsheet is a native plugin. You can edit those in the plugins folder. However, you have to write native code. If you are looking for another (non-native) way, just google angular-modal and roughly a 1000 great options will come up for directives which you should be able to implement easily.

Related

Flutter on tap not working on Html element view

The webpage I'm loading contains a HtmlElementView class which will load an URL. And I am having an action in app bar and when I am tapping on a option, It is not responding.
In the reference image the account settings option is clickable because it is outside the HtmlElementView but the others two options are not clickable because it is on top of the HtmlElementView. Help me with an solution for this.
There seems to be no in easy way of dealing with this in flutter.
So the best option is to use pub.dev/packages/pointer_interceptor
Thanks to #Pat9RB for finding this!

How to show selection items in ionic ion-select similar to datepicker?

How can I show my items like the datepicker? At the moment, I just see a popup where I can choose from. I want it to be scrollable
https://ionicframework.com/docs/native/date-picker/
with this native plugin you can use the native date picker of the underlying OS.

how to use check box list inside Ionic Action Sheet?

I'm new to an ionic framework and its components. I am creating a mobile app using Ionic Framework. I like the UX of ActionSheet (Coming up from the bottom with a list of buttons) but it comes only with options of adding buttons. I want to know whether we can use check box list inside Ionic ActionSheet? I have googled it but I didn't find any useful link to do that. Please help me. Thanks in advance.

how to create the control in xcode

I'm new to iphone programming. there are lot of basic controls in xcode which i can implement but i want to know how to create the control shown below in iphone.
It is not present in list of control objects in xcode
There are no default dropdown implementations available for iPhone. You can try to implement a UIPickerView or UIActionSheet based on the requirement.
If you cannot modify your design, you can go ahead and implement your own dropdown implementation. Basically you need to have a button with the above image as background view and on tap of that you need to show a table view below that. Alternatively you can check this custom dropdown list and this Drop Down Demo iOS.
Xcode does not provide this control.You can create custom control with a table view and Button.Show the table view when you click on it and hide it on again clicking on it.You can also add images on background for the same look.

iphone sdk how to add option in UIWebview?

I am using UIwebview .In webview if you longpress on the screen it will show copy,paste popup.I want to add one more option (custom) into that popUp.How to add that and how to handle that.Can any one share the code please.
You can achieve this by handling touch events of your window and also you need to use some javascript functions to Contextual menu in UIWebView. For more about this follow the tutorial - http://www.icab.de/blog/2010/07/11/customize-the-contextual-menu-of-uiwebview/