mkinnan
mkinnan
@signalpoint It appears you had (still have?) the same or related issue: http://tylerfrankenstein.com/code/drupal-location-form-alter
@signalpoint My mistake ... your link above is for Drupal 6.x, not DrupalGap. I still haven't figured out how to add javascript to the form after it loads. After experimentation...
Wrapping code in `setTimeout` is the best solution I have been able to devise. Tested in browser and compiled Android app. function my_module_form_alter(form, form_state, form_id) { try { if (form_id...
@signalpoint I've searched for a bit and still can't get any traction on a solution. I'm not sure what would go in __settings.php__ ... I checked the `variables` table in...
Users are uninstalling my app because of this issue. I will pay someone to figure out how to fix it for me. It's got to be a simple fix but...
I'm going to try the Persistent Login module and see how that goes.
Installed this: https://www.drupal.org/project/session_expire Set sessions in configuration to never expire. So far, it's working and users don't have to log in every couple of days.
`_drupalgap_goto_query_string` appears to store the acutal __query string__ and is not a _true_ or _false_ variable. When `drupalgap_goto` is called, the query string gets stripped off by `_drupalgap_goto_prepare_path`. The query...
@signalpoint Thanks! That works for getting the values on the pageshow after the form is submitted.
As a work around, I created 5 fields and use javascript to hide/show (during hook_form_alter) the _Select List_ widget each time a term is select form.elements['group_add_keywords_0'] = { title: 'Group...