Blackberry Date Field help - blackberry

Please tell me how to add a date field to a screen
It will be in the format of choose from that box will be button in which after sl

Use the built-in DateField class. See also this example.

Related

epubjs-rn - Highlight a text in iOS

I am new to RN and to epubjs and I need some help on the best way to solve the highlighting a text. As far as I understand, once the user highlights a text, iOS shows it default "copy, define, share.." buttons.
How do I disable that? Or is it possible to add a highlight option to the set of default options and get a callback with the text range once the highlight is done?
Help would be really appreciated.

Tool tip text in Google App Maker

Is there a simpler way to do tool tip text when ever I hover thru the following button in Google App Maker?
Go to the Other section of the Property Editor. The title field should give you what you need.
This works well. I know there is a way to inject JQuery into the AppMaker, and from there its just determining when the DOM is loaded and you can modify the element with a script.

Don't show DatePicker on input focus, only icon click

The docs doesn't mention this, but does anyone know if it's possible to only show the DatePicker on icon click (or button), and not when the input field receives focus?
Users will primarily enter dates using the keyboard and doesn't want the DatePicker displayed, unless specifically asked for.
You can have a look here for the complete API which has some options that are not documented on the AntDesign site. But there is no option to achieve what you are looking for.
You need the combination of a text input with a button to popup the picker, which is a different paradigm from the one <DatePicker> uses. It could be "hacked" by combining a normal <Input>, <DatePicker> with custom CSS that only shows the button, and some Javascript event handlers.

Plone 4 : Display Clickable link in View Mode

I am a new user working with plone4. I have a page in view mode that displays links e.g. http://www.somelink.com. I need to find a way of making the displayed field as a clickable URL. Which field type or widget will I have to use?
Any help will be greatly appreciated.
You should use text field, the default widget should work fine for you.
~ or ~
if you have very specific needs, you could use a string field and then customize your widget.

Blackberry input field that mimics the input field of Android

I'm trying to make a login screen for Blackberry with input fields for username and password that look like the the editText field of android. Basically, there should be a well defined background and default prompt text in a different color when no text has been input. Unfortunately, I couldn't find a default field provided by blackberry. I'm currently using an EditField and a PasswordEditField with BorderFactory to provide the demarcation. Is anyone aware of such libraries or some other open source efforts by someone to do so? Please point me to any tutorial, etc too.
Thanks!
You will need to write your own custom field which extends EditField.
http://docs.blackberry.com/en/developers/deliverables/11958/Create_a_custom_field_508117_11.jsp
My suggestions are:
Override the Field.paint() method to place the label inside the text box (rather than to the left of it which is the default behaviour). This is where your instruction to the user can go, ie the 'Username' or 'Password' text.
Override the Field.onFocus() method to remove the instruction from the text box. Conversely override the Field.onUnfocus() method to add it back in if the user moves to another text box without entering any text.

Resources