mkinnan
mkinnan
Has there been any progress on this?
What's the strategy you have in mind? Saving each page data to local storage?
Just to update ... I am currently using Views with exposed filters. In DrupalGap I hide the exposed filters to prevent them from displaying in the view. I created a...
@signalpoint Yes, I am using a reload page: items.push(bl('My Account', 'user/' + Drupal.user.uid, { attributes: { 'data-icon': 'lock', 'class': 'menulinks' }, reloadPage:true })); I have both checkboxes and **List(text)** fields...
@signalpoint Thanks for the feedback!! Here's what I finally got working: https://github.com/signalpoint/DrupalGap/pull/934 I welcome suggestions/edits in hopes to have it an example Doc. Is there any reason I should be...
@gs9999 Thanks for the feedback! Your approach sounds like another great approach! I was intentionally trying to _not_ use a form. I wanted users to be able to tap/change a...
I tried this in __hook_menu__: items['#my_module_left_panel'] = { pageshow: 'my_module_pageshow' }; but still can't get the panel to show.
The __Panels Widget__ documentation is a year old. Is it still valid? Is the approach now to use `hook_block_view` and add a case for __my_module_pageshow__ and dump all the code...
Here's what I partially have working. I add a simple button next to the node title. Tapping the button causes the A couple issues I can't figure out. (1) The...
@nevkatz Following this example: http://docs.drupalgap.org/7/Forms/Form_Elements/Radio_Buttons Modify the CSS to something like:  To achieve something that looks like:  If you have more than 2 items, then you will probably...