Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Server-side "Field State" parser.

    Hi Isomorphic,

    Do you have any field state parsing utilities server-side that I can use to easily parse and utilize the information provided in the field state?

    It seems awfully close to JSON, however, instead of:

    Code:
    ...{"name":"type","width":100}...
    It has some double quotes omitted, like follows.

    Code:
    ...{name:"type",width:100}...
    This is causing the parser I am utilizing to throw an exception. If I add the double quotes, it appears to parse OK.

    Thanks

    SmartClient Version: SNAPSHOT_v10.1d_2015-08-06/Pro Deployment (built 2015-08-06)

    #2
    We don't have server-side support for fieldState parsing, and the contents of the fieldState are actually intentional undocumented and subject to change.

    It's not clear what part of the fieldState information you need on the server side, but you'll need to either gather that information directly (without calling getFieldState()) or take some other approach.

    Comment

    Working...
    X