<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>The Grid data doesnt refresh until change focus in other place</title><link>https://community.appian.com/discussions/f/general/14027/the-grid-data-doesnt-refresh-until-change-focus-in-other-place</link><description>Hi everyone, 
 I&amp;#180;ve a problema refreshing a grid in an interface. 
 I cannt get the grid updated when uploading a new file, until the interface doesnt load some data (using the drop box for example), I cannt see the new file listing. Is it possible to</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: The Grid data doesnt refresh until change focus in other place</title><link>https://community.appian.com/thread/63807?ContentTypeID=1</link><pubDate>Thu, 03 Jan 2019 14:30:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:71a1c3c9-e8eb-4c07-a5ec-14dce2d66ad3</guid><dc:creator>Mike Schmitt</dc:creator><description>FYI the style of the button makes no difference to the document upload process; primary/secondary/etc affect only the button styling.  All the uploaded document needs is for the form to be submitted (any submitting button click, or even submit link would do).&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: The Grid data doesnt refresh until change focus in other place</title><link>https://community.appian.com/thread/63772?ContentTypeID=1</link><pubDate>Thu, 03 Jan 2019 04:15:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5d2cb210-1429-42dc-8ff5-4500f6eff35d</guid><dc:creator>Dude</dc:creator><description>Once we upload the document, it must be submitted using PRIMARY button. Then only document get saved in the target folder. As per the screenshot, you are using SECONDARY button title ADD DOCUMENT. Also enable activity chaining in the process model&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: The Grid data doesnt refresh until change focus in other place</title><link>https://community.appian.com/thread/63765?ContentTypeID=1</link><pubDate>Wed, 02 Jan 2019 16:31:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:632b14fa-9d1f-4c0c-9ba5-3f3baef86aa5</guid><dc:creator>Mike Schmitt</dc:creator><description>I don&amp;#39;t believe your upload will work correctly, the way you have it set up currently.  You&amp;#39;re currently saving the value of the uploaded document into the &amp;quot;idDocument&amp;quot; property of the ri!documentosAdjuntos CDT, but in order for Appian to process the upload correctly, I believe it still requires that the main saveInto of the Document be targetted at a Document-type rule input which maps to a document-type ACP variable in the user input task.&lt;br /&gt;
&lt;br /&gt;
As far as I can tell, the way you should be doing this is by having a completely separate ri! variable to store the value of the uploaded document, then after form sumission, grab the ID of the uploaded document (since it isn&amp;#39;t necessarily finalized until this point), store it into the &amp;quot;idDocument&amp;quot; field of your CDT at that point, and then start the &amp;quot;Document Onboarding&amp;quot; model as a subprocess before looping the user back into the SAIL form again.  At that point, if you&amp;#39;ve set up everything else correctly, the grid should automatically show the current values you&amp;#39;re expecting to see.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: The Grid data doesnt refresh until change focus in other place</title><link>https://community.appian.com/thread/63757?ContentTypeID=1</link><pubDate>Wed, 02 Jan 2019 07:51:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:95b85986-e180-4024-81ca-40765dff4ba6</guid><dc:creator>Pablo Ramos Clemente</dc:creator><description>Hi,&lt;br /&gt;
&lt;br /&gt;
Im using load(), a try to change it, but with with() function the interface doesnt work. The functional idea is upload the grid just by pressing the button. I share code with only the grid and button section:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
load(&lt;br /&gt;
    local!paginacion: a!pagingInfo(&lt;br /&gt;
    startIndex: 1,&lt;br /&gt;
    batchSize: 5,&lt;br /&gt;
    sort: a!sortInfo(&lt;br /&gt;
      field: &amp;quot;idDoc&amp;quot;,&lt;br /&gt;
      ascending: false()&lt;br /&gt;
    )&lt;br /&gt;
  ...),&lt;br /&gt;
  {     &lt;br /&gt;
   with(&lt;br /&gt;
   local!documentos: a!queryEntity(&lt;br /&gt;
              ), &lt;br /&gt;
    a!sectionLayout(&lt;br /&gt;
      contents: {&lt;br /&gt;
            ...),&lt;br /&gt;
            a!gridField(&lt;br /&gt;
              label: &amp;quot;Paging Grid&amp;quot;,&lt;br /&gt;
              labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt;
              totalCount: local!documentos.totalcount,&lt;br /&gt;
              columns: {&lt;br /&gt;
                a!gridTextColumn(&lt;br /&gt;
                  label: &amp;quot;Type&amp;quot;,&lt;br /&gt;
                  data: {index(local!documentos.data,&amp;quot;documentType&amp;quot;,{})}&lt;br /&gt;
                ),&lt;br /&gt;
                a!gridTextColumn(&lt;br /&gt;
                  label: &amp;quot;Subtype&amp;quot;,&lt;br /&gt;
                  data: {index(local!documentos.data,&amp;quot;documentSubtype&amp;quot;,{})}&lt;br /&gt;
                ),&lt;br /&gt;
                a!gridTextColumn(&lt;br /&gt;
                  label: &amp;quot;Name&amp;quot;,&lt;br /&gt;
                  data: {index(local!documentos.data,&amp;quot;name&amp;quot;,{})},&lt;br /&gt;
                  links: a!forEach( &lt;br /&gt;
                    items: local!documentos.data, &lt;br /&gt;
                    expression: a!documentDownloadLink(&lt;br /&gt;
                    document: index(local!documentos.data,&amp;quot;idDocument&amp;quot;,{})&lt;br /&gt;
                  )&lt;br /&gt;
                 )&lt;br /&gt;
                ),&lt;br /&gt;
                a!gridTextColumn(&lt;br /&gt;
                  label: &amp;quot;User&amp;quot;,&lt;br /&gt;
                  data: {index(local!documentos.data,&amp;quot;user&amp;quot;,{})}&lt;br /&gt;
                ),&lt;br /&gt;
                a!gridTextColumn(&lt;br /&gt;
                  label: &amp;quot;Creation Date&amp;quot;,&lt;br /&gt;
                  data: {index(local!documentos.data,&amp;quot;creationDate&amp;quot;,{})}&lt;br /&gt;
                )&lt;br /&gt;
              },&lt;br /&gt;
              value: local!paginacion,&lt;br /&gt;
              saveInto: {local!paginacion},&lt;br /&gt;
              requireselection: false,&lt;br /&gt;
              validations: {},&lt;br /&gt;
              shadeAlternateRows: true,&lt;br /&gt;
              spacing: &amp;quot;DENSE&amp;quot;,&lt;br /&gt;
              borderstyle: &amp;quot;STANDARD&amp;quot;&lt;br /&gt;
            ...),&lt;br /&gt;
&lt;br /&gt;
            a!buttonArrayLayout(&lt;br /&gt;
              buttons: {&lt;br /&gt;
                a!buttonWidgetSubmit(&lt;br /&gt;
                  label: &amp;quot;ADD DOCUMENT&amp;quot;,&lt;br /&gt;
                  saveInto: {&lt;br /&gt;
                             a!save(ri!documentosAdjuntos.user,loggedInUser()),&lt;br /&gt;
                             a!save(ri!documentosAdjuntos.idCase,ri!idCase),&lt;br /&gt;
                             a!save(ri!documentosAdjuntos.creationDate,now()),&lt;br /&gt;
                             a!save(ri!estado,&amp;quot;upload&amp;quot;),&lt;br /&gt;
                             a!startProcess(&lt;br /&gt;
                                         processModel: cons!OBE_CT_DocumentOnBoarding, &lt;br /&gt;
                                         processParameters:{&lt;br /&gt;
                                                        documentOnBoarding: ri!documentosAdjuntos,&lt;br /&gt;
                                                        estado: &amp;quot;upload&amp;quot;&lt;br /&gt;
                                         }&lt;br /&gt;
                              ), &lt;br /&gt;
                             a!save(ri!documentosAdjuntos,null)&lt;br /&gt;
                             },&lt;br /&gt;
                  style: &amp;quot;NORMAL&amp;quot;,&lt;br /&gt;
                  validationGroup: &amp;quot;submit&amp;quot;&lt;br /&gt;
                  /*submit: true*/&lt;br /&gt;
                )&lt;br /&gt;
              },&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: The Grid data doesnt refresh until change focus in other place</title><link>https://community.appian.com/thread/63678?ContentTypeID=1</link><pubDate>Thu, 27 Dec 2018 19:23:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f8984b8f-70e8-472f-8861-a10b2e38cc69</guid><dc:creator>legotx</dc:creator><description>Check with() vs load(). If it is with() the page refreshes while it only loads once with load().&lt;br /&gt;
&lt;br /&gt;
OR&lt;br /&gt;
If you are using load, you can use the file upload as a rule input, then you can call an a!save() after every upload.&lt;br /&gt;
&lt;br /&gt;
This way, the rule input can be used to display the grid properly.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: The Grid data doesnt refresh until change focus in other place</title><link>https://community.appian.com/thread/63581?ContentTypeID=1</link><pubDate>Thu, 20 Dec 2018 13:10:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:dc57b7e3-5d86-4a24-b68a-79c6abbdd59c</guid><dc:creator>Pablo Ramos Clemente</dc:creator><description>Hi!&lt;br /&gt;
The grid area is in with() function, but inside load(). If I change external load() for with(), the process ends and returns to the main interface (the grid interface is part of a much larger application). Thanks for answer so quickly!&lt;br /&gt;
&lt;br /&gt;
The code is:&lt;br /&gt;
&lt;br /&gt;
load(&lt;br /&gt;
  &lt;br /&gt;
  local!filter:{&lt;br /&gt;
   documentType: null,&lt;br /&gt;
   name: null,&lt;br /&gt;
   documentSubtype: null&lt;br /&gt;
   },&lt;br /&gt;
  {     &lt;br /&gt;
   with(   &lt;br /&gt;
   local!paginacion: a!pagingInfo(&lt;br /&gt;
        startIndex: 1,&lt;br /&gt;
        batchSize: 5,&lt;br /&gt;
        sort: a!sortInfo(&lt;br /&gt;
          field: &amp;quot;idDoc&amp;quot;,&lt;br /&gt;
          ascending: false()&lt;br /&gt;
        )&lt;br /&gt;
      ),&lt;br /&gt;
   &lt;br /&gt;
    local!documentos: a!queryEntity(&lt;br /&gt;
        entity: cons!OBE_CT_Document,&lt;br /&gt;
        query: a!query(&lt;br /&gt;
          logicalExpression: a!queryLogicalExpression(&lt;br /&gt;
            operator: &amp;quot;AND&amp;quot;,&lt;br /&gt;
            filters: {&lt;br /&gt;
              a!queryFilter(&lt;br /&gt;
                field: &amp;quot;idCase&amp;quot;,&lt;br /&gt;
                operator: &amp;quot;=&amp;quot;,&lt;br /&gt;
                value: ri!idCase&lt;br /&gt;
              ),&lt;br /&gt;
              if(isnull(local!filter.documentType),&lt;br /&gt;
                {},&lt;br /&gt;
              a!queryFilter(&lt;br /&gt;
                field: &amp;quot;documentType&amp;quot;,&lt;br /&gt;
                operator: &amp;quot;includes&amp;quot;,&lt;br /&gt;
                value: local!filter.documentType&lt;br /&gt;
              )&lt;br /&gt;
              ),&lt;br /&gt;
              if(isnull(local!filter.name),&lt;br /&gt;
                {},&lt;br /&gt;
              a!queryFilter(&lt;br /&gt;
                field: &amp;quot;name&amp;quot;,&lt;br /&gt;
                operator: &amp;quot;includes&amp;quot;,&lt;br /&gt;
                value: local!filter.name&lt;br /&gt;
              )&lt;br /&gt;
              ),&lt;br /&gt;
              if(isnull(local!filter.documentSubtype),&lt;br /&gt;
                {},&lt;br /&gt;
              a!queryFilter(&lt;br /&gt;
                field: &amp;quot;documentSubtype&amp;quot;,&lt;br /&gt;
                operator: &amp;quot;includes&amp;quot;,&lt;br /&gt;
                value: local!filter.documentSubtype&lt;br /&gt;
              )&lt;br /&gt;
              )&lt;br /&gt;
            }&lt;br /&gt;
          ),&lt;br /&gt;
          pagingInfo: local!paginacion&lt;br /&gt;
        )&lt;br /&gt;
      ),  &lt;br /&gt;
      &lt;br /&gt;
    a!sectionLayout(&lt;br /&gt;
      contents: {&lt;br /&gt;
        a!boxLayout(&lt;br /&gt;
          label: &amp;quot;On Boarding Documents&amp;quot;,&lt;br /&gt;
          contents: {&lt;br /&gt;
            a!sideBySideLayout(&lt;br /&gt;
              items: {&lt;br /&gt;
                a!sideBySideItem(&lt;br /&gt;
                  item: a!textField(&lt;br /&gt;
                    label: &amp;quot;&amp;quot;,&lt;br /&gt;
                    labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt;
                    placeholder: &amp;quot;-- Name to search --&amp;quot;,&lt;br /&gt;
                    value: local!filter.name,&lt;br /&gt;
                    saveInto: {local!filter.name},&lt;br /&gt;
                    refreshAfter: &amp;quot;KEYPRESS&amp;quot;,&lt;br /&gt;
                    validations: {}&lt;br /&gt;
                  )&lt;br /&gt;
                ),&lt;br /&gt;
                a!sideBySideItem(&lt;br /&gt;
                  item: a!textField(&lt;br /&gt;
                    label: &amp;quot;&amp;quot;,&lt;br /&gt;
                    labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt;
                    placeholder: &amp;quot;-- Document type to search --&amp;quot;,&lt;br /&gt;
                    value: {local!filter.documentType},&lt;br /&gt;
                    saveInto: {local!filter.documentType},&lt;br /&gt;
                    refreshAfter: &amp;quot;KEYPRESS&amp;quot;,&lt;br /&gt;
                    validations: {}&lt;br /&gt;
                  )&lt;br /&gt;
                ),&lt;br /&gt;
                a!sideBySideItem(&lt;br /&gt;
                  item: a!textField(&lt;br /&gt;
                    label: &amp;quot;&amp;quot;,&lt;br /&gt;
                    labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt;
                    placeholder: &amp;quot;-- SubDocument type to search --&amp;quot;,&lt;br /&gt;
                    value: local!filter.documentSubtype,&lt;br /&gt;
                    saveInto: {local!filter.documentSubtype},&lt;br /&gt;
                    refreshAfter: &amp;quot;KEYPRESS&amp;quot;,&lt;br /&gt;
                    validations: {}&lt;br /&gt;
                  )&lt;br /&gt;
                ),&lt;br /&gt;
                a!sideBySideItem(&lt;br /&gt;
                  item: a!richTextDisplayField(&lt;br /&gt;
                    label: &amp;quot;&amp;quot;,&lt;br /&gt;
                    labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt;
                    helptooltip: &amp;quot;&amp;quot;,&lt;br /&gt;
                    value: {&lt;br /&gt;
                      a!richTextIcon(&lt;br /&gt;
                        icon: &amp;quot;trash-o&amp;quot;,&lt;br /&gt;
                        caption: &amp;quot;Clean search filters&amp;quot;,&lt;br /&gt;
                        link: a!dynamicLink(&lt;br /&gt;
                          label: &amp;quot;Dynamic Link&amp;quot;,&lt;br /&gt;
                          saveInto: {a!save(local!filter,null)}&lt;br /&gt;
                        ),&lt;br /&gt;
                        size: &amp;quot;LARGE&amp;quot;&lt;br /&gt;
                      )&lt;br /&gt;
                    }&lt;br /&gt;
                  ),&lt;br /&gt;
                  width: &amp;quot;MINIMIZE&amp;quot;&lt;br /&gt;
                )&lt;br /&gt;
              },&lt;br /&gt;
              alignvertical: &amp;quot;MIDDLE&amp;quot;,&lt;br /&gt;
              spacing: &amp;quot;STANDARD&amp;quot;&lt;br /&gt;
            ),&lt;br /&gt;
            a!gridField(&lt;br /&gt;
              label: &amp;quot;Paging Grid&amp;quot;,&lt;br /&gt;
              labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt;
              totalCount: local!documentos.totalcount,&lt;br /&gt;
              columns: {&lt;br /&gt;
                a!gridTextColumn(&lt;br /&gt;
                  label: &amp;quot;Type&amp;quot;,&lt;br /&gt;
                  data: {index(local!documentos.data,&amp;quot;documentType&amp;quot;,{})}&lt;br /&gt;
                ),&lt;br /&gt;
                a!gridTextColumn(&lt;br /&gt;
                  label: &amp;quot;Subtype&amp;quot;,&lt;br /&gt;
                  data: {index(local!documentos.data,&amp;quot;documentSubtype&amp;quot;,{})}&lt;br /&gt;
                ),&lt;br /&gt;
                a!gridTextColumn(&lt;br /&gt;
                  label: &amp;quot;Name&amp;quot;,&lt;br /&gt;
                  data: {index(local!documentos.data,&amp;quot;name&amp;quot;,{})}&lt;br /&gt;
                ),&lt;br /&gt;
                a!gridTextColumn(&lt;br /&gt;
                  label: &amp;quot;User&amp;quot;,&lt;br /&gt;
                  data: {index(local!documentos.data,&amp;quot;user&amp;quot;,{})}&lt;br /&gt;
                ),&lt;br /&gt;
                a!gridTextColumn(&lt;br /&gt;
                  label: &amp;quot;Creation Date&amp;quot;,&lt;br /&gt;
                  data: {index(local!documentos.data,&amp;quot;creationDate&amp;quot;,{})}&lt;br /&gt;
                )&lt;br /&gt;
              },&lt;br /&gt;
              value: local!paginacion,&lt;br /&gt;
              saveInto: {local!paginacion},&lt;br /&gt;
              requireselection: false,&lt;br /&gt;
              validations: {},&lt;br /&gt;
              shadeAlternateRows: true,&lt;br /&gt;
              spacing: &amp;quot;DENSE&amp;quot;,&lt;br /&gt;
              borderstyle: &amp;quot;STANDARD&amp;quot;&lt;br /&gt;
            ),&lt;br /&gt;
            a!richTextDisplayField(&lt;br /&gt;
              label: &amp;quot;&amp;quot;,&lt;br /&gt;
              labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt;
              value: {&lt;br /&gt;
                a!richTextItem(&lt;br /&gt;
                  text: {&lt;br /&gt;
                    &amp;quot;New Document File&amp;quot;&lt;br /&gt;
                  },&lt;br /&gt;
                  color: &amp;quot;STANDARD&amp;quot;,&lt;br /&gt;
                  style: {&lt;br /&gt;
                    &amp;quot;STRONG&amp;quot;&lt;br /&gt;
                  }&lt;br /&gt;
                )&lt;br /&gt;
              }&lt;br /&gt;
            ),&lt;br /&gt;
            a!sideBySideLayout(&lt;br /&gt;
              items: {&lt;br /&gt;
                a!sideBySideItem(&lt;br /&gt;
                  item: a!dropdownField(&lt;br /&gt;
                    label: &amp;quot;Document Type:&amp;quot;,&lt;br /&gt;
                    labelPosition: &amp;quot;ADJACENT&amp;quot;,&lt;br /&gt;
                    placeholderLabel: &amp;quot;--- Select a Value ---&amp;quot;,&lt;br /&gt;
                    choiceLabels: {rule!OBE_ER_getValorCombos(&amp;quot;documentTypes&amp;quot;,null).descripcion},&lt;br /&gt;
                    choiceValues: {rule!OBE_ER_getValorCombos(&amp;quot;documentTypes&amp;quot;,null).descripcion},&lt;br /&gt;
                    value: ri!documentosAdjuntos.documentType,&lt;br /&gt;
                    saveInto: {ri!documentosAdjuntos.documentType},&lt;br /&gt;
                    required: true,&lt;br /&gt;
                    validations: {}&lt;br /&gt;
                  )&lt;br /&gt;
                ),&lt;br /&gt;
                a!sideBySideItem(&lt;br /&gt;
                  item: a!dropdownField(&lt;br /&gt;
                    label: &amp;quot;Document Subtype:&amp;quot;,&lt;br /&gt;
                    labelPosition: &amp;quot;ADJACENT&amp;quot;,&lt;br /&gt;
                    placeholderLabel: &amp;quot;--- Select a Value ---&amp;quot;,&lt;br /&gt;
                    choiceLabels: {rule!OBE_ER_getValorCombos(&amp;quot;documentSubTypes&amp;quot;,null).descripcion},&lt;br /&gt;
                    choiceValues: {rule!OBE_ER_getValorCombos(&amp;quot;documentSubTypes&amp;quot;,null).descripcion},&lt;br /&gt;
                    value: ri!documentosAdjuntos.documentSubtype,&lt;br /&gt;
                    saveInto: {ri!documentosAdjuntos.documentSubtype},&lt;br /&gt;
                    required: true,&lt;br /&gt;
                    validations: {}&lt;br /&gt;
                  )&lt;br /&gt;
                ),&lt;br /&gt;
                a!sideBySideItem(&lt;br /&gt;
                  item: a!fileUploadField(&lt;br /&gt;
                    label: &amp;quot;&amp;quot;,&lt;br /&gt;
                    labelPosition: &amp;quot;COLLAPSED&amp;quot;,&lt;br /&gt;
                    target: cons!OBE_CONS_DocumentosKC,&lt;br /&gt;
                    fileNames: fv!file.name,&lt;br /&gt;
                    maxselections: 1,&lt;br /&gt;
                    value: ri!documentosAdjuntos.idDocument,&lt;br /&gt;
                    saveInto: {ri!documentosAdjuntos.idDocument},&lt;br /&gt;
                    validations: {},&lt;br /&gt;
                    buttonstyle: &amp;quot;PRIMARY&amp;quot;,&lt;br /&gt;
                    buttonsize: &amp;quot;SMALL&amp;quot;&lt;br /&gt;
                  )&lt;br /&gt;
                )&lt;br /&gt;
              },&lt;br /&gt;
              alignvertical: &amp;quot;MIDDLE&amp;quot;&lt;br /&gt;
            ),&lt;br /&gt;
            a!richTextDisplayField(&lt;br /&gt;
              label: &amp;quot;&amp;quot;,&lt;br /&gt;
              labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt;
              value: {&lt;br /&gt;
                a!richTextItem(&lt;br /&gt;
                  text: {&lt;br /&gt;
                    &amp;quot;&lt;br /&gt;
&amp;quot;&lt;br /&gt;
                  },&lt;br /&gt;
                  color: &amp;quot;STANDARD&amp;quot;,&lt;br /&gt;
                  style: {&lt;br /&gt;
                    &amp;quot;STRONG&amp;quot;&lt;br /&gt;
                  }&lt;br /&gt;
                )&lt;br /&gt;
              }&lt;br /&gt;
            ),&lt;br /&gt;
            a!buttonArrayLayout(&lt;br /&gt;
              buttons: {&lt;br /&gt;
                a!buttonWidgetSubmit(&lt;br /&gt;
                  label: &amp;quot;ADD DOCUMENT&amp;quot;,&lt;br /&gt;
                  saveInto: {a!save(ri!documentosAdjuntos.user,loggedInUser()),&lt;br /&gt;
                             a!save(ri!documentosAdjuntos.idCase,ri!idCase),&lt;br /&gt;
                             a!save(ri!documentosAdjuntos.creationDate,now()),&lt;br /&gt;
                             a!save(ri!estado,&amp;quot;upload&amp;quot;),&lt;br /&gt;
                             a!startProcess(&lt;br /&gt;
                              processModel: cons!OBE_CT_DocumentOnBoarding, &lt;br /&gt;
                              processParameters:{&lt;br /&gt;
                                documentOnBoarding: ri!documentosAdjuntos,&lt;br /&gt;
                                estado: &amp;quot;upload&amp;quot;&lt;br /&gt;
                              }&lt;br /&gt;
                              ), &lt;br /&gt;
                             a!save(ri!documentosAdjuntos,null)&lt;br /&gt;
                             },&lt;br /&gt;
                  style: &amp;quot;NORMAL&amp;quot;,&lt;br /&gt;
                  validationGroup: &amp;quot;submit&amp;quot;&lt;br /&gt;
                  /*submit: true*/&lt;br /&gt;
                )&lt;br /&gt;
              },&lt;br /&gt;
              align: &amp;quot;END&amp;quot;&lt;br /&gt;
            )&lt;br /&gt;
          },&lt;br /&gt;
          style: &amp;quot;ACCENT&amp;quot;&lt;br /&gt;
        )&lt;br /&gt;
      }&lt;br /&gt;
    )&lt;br /&gt;
   )&lt;br /&gt;
  }&lt;br /&gt;
)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thank you so much for your time!!&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: The Grid data doesnt refresh until change focus in other place</title><link>https://community.appian.com/thread/63578?ContentTypeID=1</link><pubDate>Thu, 20 Dec 2018 12:41:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:14159418-4af7-48be-b0a3-7aa220b61773</guid><dc:creator>dipakingle02</dc:creator><description>Hi &lt;a href="/members/pablor347"&gt;Pablo Ramos Clemente&lt;/a&gt; ,&lt;br /&gt;
&lt;br /&gt;
Please  put upload code inside with().  Please share code snippet if possible.&lt;br /&gt;
&lt;br /&gt;
Thanks,/&lt;br /&gt;
Dipak&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>