I have an inputText which I want the cursor to be aligned to the left and not to the right as in the image
I have this
and I want this :
image
Thanks in advance.
I solve the issue adding this property contentStyle="text-align:left;" to the af:inputText, if you are using Jdeveloper 12c in the property panel you can see something like this
Greetings
Related
i have drupal website that using Owl Carousel v1.3.2 for it slideshow slider. but the slider can't loop, when i comes to the end of image,it rewind to first image while showing the previous image. I have tried to put loop : true in it js code but doesnt work.
anyone can help me with this?
In order to loop, you need to edit the settings for your carousel at:
[your site]/admin/config/user-interface/owlcarousel
Select the settings group that is being applied to your carousel.
Check the box next to "Rewind Nav" in the settings.
I had the same problem and this fixed it for me.
I have an issue with ImageDownloadService. Below is my code. If I use a label, I can display the image downloaded from a server. But if I use a button, nothing is displayed. I have set the placeholder as the initial icon of the button. Please what am i doing wrong?
EncodedImage eImg = EncodedImage.findButton(f).getIcon();
Image i = URLImage.createToStorage(eImg, "MyStoredImage.jpg", "http://ImgURL.png", URLImage.RESIZE_SCALE);
//now set the ad image to downloaded image
findButton(f).setIcon(i);
If I used findLabel(f).getIcon() instead and findLabel(f).setIcon(i), the code would work but for Button it does not. Why is this?
Thanks in advance.
See the discussion in the Codename One forum here https://groups.google.com/d/msg/codenameone-discussions/05dLV771OV8/x-pEYngCrsEJ
I want to change my button background color dynamically when there is no data in next page or form?please help me.i am using jdeveloper 11g
Why do you want to change the background color? Instead you can make the button as disabled if there is no data.
Put a conditional EL in the styleclass attribute of the button and refer to a style you defined in your skin:
https://blogs.oracle.com/shay/entry/styling_specific_adf_components_with
I am making a preview in extjs and I need to float images above an image in a DataView based on an image clicked in another DataView. image layering. How does one do that?
i think you can achieve that by manipulating the zIndex of the individual images... That is a CSS solution... The images you want above should have zIndex higher than the one below and at first hide all images except the lowermost image and then as required show the other images one after another... Hope it helps...
I try to use CodeMirror in a TabPanel.
http://jsfiddle.net/2dv2z/6/
I have 2 problems which block me:
It's not possible to change the tab
The CodeMirror Element does not really fit his container...
Has anyone some ideas ?
I have developed an extjs component for codemirror. Have a look here http://www.mzsolutions.eu/extjs/#!/api/Ext.ux.form.field.CodeMirror
Cheers