Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

jerwarren
jerwarren
Offline

Badges

Badges
12

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
5

Posts

Posts
30

Discussions

Discussions
1

Questions

Questions
29

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by jerwarren
Customize the badges you want to showcase on your profile
Re: Navto #anchors in HTML Articles? - Adobe Experience Manager Mobile 12-04-2016
Can you be more specific? It's been a while since I tried this, but I, too, have wished for anchors on navto: links. Can you describe what you were doing that didn't work and what did?

Views

887

Likes

0

Replies

0
bug: Android re-enables disabled navigation when switching apps, but now it won't go away - Adobe Experience Manager Mobile 06-04-2016
We're using the gesture API to prevent the chrome navigation bar from auto show-hiding, and have built our own top navigation bar. Because we have our own top navigation bar, we've also disabled the tap-to-show on the navigation bar.However, if you use Android's app switch button to change apps, and then switch back to the AEM Mobile app, the native navigation bar is now visible, but does not autohide. Tapping is disabled, so it effectively never goes away.This does not happen on iOS.Making matt...

Views

567

Likes

0

Replies

0
Re: difference between phonegap and AEM - Mobile (DPS) - Adobe Experience Manager Mobile 07-04-2016
Thanks Bob, yeah it is helpful.

Views

449

Likes

0

Replies

0
Re: App install just disappears... - Adobe Experience Manager Mobile 31-03-2016
Thanks Bob!even though I did use the developer certificate yesterday with no luck... it's working today!phew!!!

Views

795

Likes

0

Replies

0
Re: Safari inspector crashing when reloading DOM on iOS - Adobe Experience Manager Mobile 21-04-2016
Jer, I don't have an update but I made sure a bug has been logged.

Views

545

Likes

0

Replies

0
Re: Why cards, browse pages and banners are not scaling in android - Adobe DPS 2015? - Adobe Experience Manager Mobile 17-02-2016
I owe you $0.01!!! We checked "full image" (even though that was the default) and sure enough, the banner and cards are now scaling correctly on the android device. Thanks so much for the tip. Saved us a ton of work and we can stay in-budget on this project.A few additional thoughts for those running into similar issues:1. davidhicks_dps has some really good suggestions listed above to fine-tune the cards so that they have a better appearance on Android. If simply choosing the "full image" optio...

Views

578

Like

1

Replies

0
Re: Video/Html/iOS - Adobe Experience Manager Mobile 16-02-2016
On iPhone, videos always play full screen. On iPad, however, you can get them to play inline. This is an iOS limitation, not a DPS limitation.If you want to hide the play button, you can do something fancy with your css like this:video::-webkit-media-controls { display:none !important;}

Views

489

Likes

0

Replies

0
Re: Working in Layout Templates, when a collection has over 400 articles... - Adobe Experience Manager Mobile 02-03-2016
You are correct."Limit for number of items in a collectionIn order to optimize performance, a new limit of 450 items (articles, banners, and collections) per collection is now in place."From: New features in 2015.8 (December 18, 2015)See here: History of new feature notes for AEM Mobile releases

Views

595

Likes

0

Replies

0
Re: DPS new license model? - Adobe Experience Manager Mobile 07-04-2016
Hi,has any one got news?

Views

614

Likes

0

Replies

0
Re: Can I get GET Parameter in DPS? - Adobe Experience Manager Mobile 09-02-2016
You could achieve this with HTML localStorage. Here's an example:In article A with the navto link to article B: Click me function navtoHandler(strNavToUrl, strCustomParam) { // sets the parameter for "param1" in HTML localStorage localStorage.setItem('param1', strCustomParam); // redirect the window using the navto window.location.href = 'navto://' + strNavToUrl; } In article B (with article name 'xxarticlenamexx'): // wait until the DOM is ready $(document).ready(function() { // makes sure that the code is loaded everytime and not cached in iOS window.onAppear = function() { if (localStorage.getItem('param1') === null || localStorage.getItem('param1') === '') { // the "param1" is empty, should ignore } else { // there is a value for "pa...

Views

620

Likes

3

Replies

0