Details
-
Type: Bug
-
Status: Resolved
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.1 Final
-
Component/s: None
-
Labels:None
-
Environment:ICEmobile/Android
Description
The strategy of discarding submits when they happen too rapidly is causing issues with the flip switch state, and component state changes, but submit is discarded, so server state never changes. Will investigate queueing submits in the container vs discarding them.
Activity
Steve Maryka
created issue -
Steve Maryka
made changes -
Field | Original Value | New Value |
---|---|---|
Assignee | Steve Maryka [ steve.maryka ] | Ted Goddard [ ted.goddard ] |
Ted Goddard
made changes -
Assignee | Ted Goddard [ ted.goddard ] | Steve Maryka [ steve.maryka ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #31372 | Tue Oct 09 15:45:50 MDT 2012 | steve.maryka | Mobi-154: Queue implimentation for handling requests and responses through the container. Still need native JS implementation that eliminates single-threaded context variable. |
Files Changed | ||||
MODIFY
/icemobile/trunk/icemobile/client/android/integration/util/src/org/icemobile/client/android/UtilInterface.java
|
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #31804 | Fri Oct 26 16:00:44 MDT 2012 | ted.goddard | append encoded JSF parameters rather than use hidden fields ( |
Files Changed | ||||
MODIFY
/icemobile/trunk/icemobile/client/android/container/assets/icefaces/native-interface.js
|
Migration
made changes -
Fix Version/s | 1.2 Beta [ 10344 ] | |
Fix Version/s | 1.0 RC1 [ 10315 ] |
Migration
made changes -
Assignee | Steve Maryka [ steve.maryka ] | Ted Goddard [ ted.goddard ] |
Migration
made changes -
Assignee | Ted Goddard [ ted.goddard ] | Steve Maryka [ steve.maryka ] |
Philip Breau
made changes -
Fix Version/s | 1.3 Beta [ 10373 ] | |
Fix Version/s | 1.2 Beta [ 10344 ] |
Steve Maryka
made changes -
Status | Open [ 1 ] | Resolved [ 5 ] |
Fix Version/s | 1.1 Final [ 10343 ] | |
Fix Version/s | 1.3 Beta [ 10373 ] | |
Resolution | Fixed [ 1 ] |
The discard logic is in the native JS.
//override primitive submit function
{ //submit is in progress, but callback not completed by container return; }namespace.submitFunction = function(element, event, options) {
var source = event ? event.target : element;
var form = ice.formOf(element);
if (form.elements['javax.faces.source'])