<?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>How to create an editable grid from a record</title><link>https://community.appian.com/discussions/f/user-interface/29925/how-to-create-an-editable-grid-from-a-record</link><description>Hi! I have a doubt with the approach of my application and I would like to know your thoughts! 
 In my case, I have a summary view of PO in which I have a read-only grid with the PO lines. 
 
 
 I created a related record action to &amp;quot;recepit&amp;quot; the PO Lines</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to create an editable grid from a record</title><link>https://community.appian.com/thread/118947?ContentTypeID=1</link><pubDate>Mon, 11 Sep 2023 09:58:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:113e6538-ecc6-4800-834f-c4aaaa4b1e75</guid><dc:creator>carlosp5114</dc:creator><description>&lt;p&gt;Thanks Ignacio! I&amp;acute;m trying to go with the editable grid, but I&amp;acute;m having some trouble&lt;/p&gt;
&lt;p&gt;First of all, I queried my data and saved it in a local variable to display in the grid (ok)&lt;/p&gt;
&lt;p&gt;Now, I have to save the values in the new localvariable/ruleinput/record, but I&amp;acute;m not sure how to do this (until now, I used the fv!item...[] in &amp;quot;value&amp;quot; and &amp;quot;saveInto&amp;quot; because I needed user interaction, but for this data I don&amp;acute;t need it except of the new column I want to create).&lt;/p&gt;
&lt;p&gt;I mean, I don&amp;acute;t know how can I point to my local!data (I suppose it is not correct to use fv! item) and then, without interaction , save the values (&amp;iquest;to a new local variable? Directly to a rule input?)&lt;/p&gt;
&lt;p&gt;I don&amp;acute;t know how to add an empty extra column to my local variable too&lt;/p&gt;
&lt;p&gt;I leave my code here for any considerations, what I&amp;acute;m trying to do is something like in the lines 53 and 55 (value from data, save into another record). Thanks a lot!&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  /*mirar para incluir columna extra en variable local*/
  local!DatosLineas: a!queryRecordType(
    recordType: &amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido&amp;#39;,
    fields: {
      &amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{fcfa4b36-4398-4430-8055-ecfa59daf13a}idLineaPedido&amp;#39;,&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{71427dbb-12db-4f83-bd99-f625bf9af271}idPedido&amp;#39;, &amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{69e9a834-b2fb-4f35-a36d-3c526c97f4ac}Material&amp;#39;,&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;, &amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;, &amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;
    },
    filters: a!queryFilter(
      field: &amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{71427dbb-12db-4f83-bd99-f625bf9af271}idPedido&amp;#39;,
      operator: &amp;quot;=&amp;quot;,
      value: ri!record[&amp;#39;recordType!{3c95c0e4-e69d-43f6-b485-e72b24252af7}CPF Maestro Pedidos.fields.{7309402c-2312-4a4e-bdaa-5654789bffb2}idPedido&amp;#39;]
    ),
    pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 100)
  ).data
  ,
  
  {
    a!sectionLayout(
      label: &amp;quot;L&amp;#237;neas Recepci&amp;#243;n&amp;quot;,
      labelIcon: &amp;quot;list-alt-solid&amp;quot;,
      contents: {
        a!gridLayout(
          label: &amp;quot;A continuaci&amp;#243;n, introduzca las cantidades a recepcionar para cada l&amp;#237;nea de pedido y pulse el bot&amp;#243;n de Recepci&amp;#243;n&amp;quot;,
          headerCells: {
            a!gridLayoutHeaderCell(label: &amp;quot;Linea Pedido&amp;quot;),
            a!gridLayoutHeaderCell(label: &amp;quot;Pedido&amp;quot;),
            a!gridLayoutHeaderCell(label: &amp;quot;Material&amp;quot;),
            a!gridLayoutHeaderCell(label: &amp;quot;Cantidad&amp;quot;),
            a!gridLayoutHeaderCell(label: &amp;quot;Precio Unitario&amp;quot;),
            a!gridLayoutHeaderCell(label: &amp;quot;Importe Total&amp;quot;),
            a!gridLayoutHeaderCell(label: &amp;quot;Cantidad Recepcionada&amp;quot;),
            a!gridLayoutHeaderCell()
          },
          columnConfigs: {
            a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;),
            a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;),
            a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;),
            a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;),
            a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;),
            a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;),
            a!gridLayoutColumnConfig(width: &amp;quot;DISTRIBUTE&amp;quot;),
            a!gridLayoutColumnConfig(width: &amp;quot;ICON&amp;quot;)
          },
          rows: a!forEach(
            items: local!DatosLineas,
            expression: a!gridRowLayout(
              contents: {
                a!textField(
                  value: fv!index,
                  readOnly:true
                ),
                a!textField(
                  value: fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{71427dbb-12db-4f83-bd99-f625bf9af271}idPedido&amp;#39;],
                  saveInto: {
                    fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{71427dbb-12db-4f83-bd99-f625bf9af271}idPedido&amp;#39;],
                    a!save(fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{4c08ec47-3ddd-462c-bbf5-d5d4a849be75}ConcatPedidoMaterial&amp;#39;], concat(
                      fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{71427dbb-12db-4f83-bd99-f625bf9af271}idPedido&amp;#39;],
                      &amp;quot;-&amp;quot;,
                      fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{69e9a834-b2fb-4f35-a36d-3c526c97f4ac}Material&amp;#39;]
                    ) 
                    )
                    ,
                    a!save(ri!recordLineasRecep[&amp;#39;recordType!{20fd7d81-a6d6-4fee-9219-afab0a7df2e4}CPF Lineas Recepciones.fields.{c78be956-74b8-47a7-b154-4e167785756d}idPedido&amp;#39;], fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{71427dbb-12db-4f83-bd99-f625bf9af271}idPedido&amp;#39;])
                  }
                ),
              
                a!textField(
                  value: fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{69e9a834-b2fb-4f35-a36d-3c526c97f4ac}Material&amp;#39;],
                  saveInto: {
                    fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{69e9a834-b2fb-4f35-a36d-3c526c97f4ac}Material&amp;#39;],
                    a!save(fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{4c08ec47-3ddd-462c-bbf5-d5d4a849be75}ConcatPedidoMaterial&amp;#39;], concat(
                      fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{71427dbb-12db-4f83-bd99-f625bf9af271}idPedido&amp;#39;],
                      &amp;quot;-&amp;quot;,
                      fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{69e9a834-b2fb-4f35-a36d-3c526c97f4ac}Material&amp;#39;]
                    ) 
                    ),
                    a!save(ri!recordLineasRecep[&amp;#39;recordType!{20fd7d81-a6d6-4fee-9219-afab0a7df2e4}CPF Lineas Recepciones.fields.{5e36f0f0-c022-4883-bc2c-195b92a6b9e0}Material&amp;#39;], fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{69e9a834-b2fb-4f35-a36d-3c526c97f4ac}Material&amp;#39;])
                    
                  }
                ),
                a!integerField(
                  value: fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;],
                  saveInto: {
                    fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;],
                    a!save(
                      fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;],
                      if(
                        or(
                          isnull(
                            fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;]
                          ),
                          isnull(
                            fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;]
                          )
                        ),
                        0,
                        fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;] * fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;]
                      )
                    )
                  },
                  required: true,
                  validations: {
                    if(
                      a!isNotNullOrEmpty(
                        fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;]
                      ) = false,
                      &amp;quot;&amp;quot;,
                      if(
                        fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;] &amp;lt; 1,
                        &amp;quot;La cantidad debe ser superior a cero&amp;quot;,
                        &amp;quot;&amp;quot;
                      )
                    )
                  }
                ),
                a!floatingPointField(
                  value: fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;],
                  saveInto: {
                    fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;],
                    a!save(
                      fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;],
                      if(
                        or(
                          isnull(
                            fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;]
                          ),
                          isnull(
                            fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;]
                          )
                        ),
                        0,
                        fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;] * fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;]
                      )
                    )
                  },
                  required: true,
                  validations: {
                    if(
                      a!isNotNullOrEmpty(
                        fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;]
                      ) = false,
                      &amp;quot;&amp;quot;,
                      if(
                        fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;] &amp;lt; 0,
                        &amp;quot;El precio unitario debe ser superior a cero&amp;quot;,
                        &amp;quot;&amp;quot;
                      )
                    )
                  }
                ),
                a!floatingPointField(
                  value: if(
                    or(
                      isnull(
                        fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;]
                      ),
                      isnull(
                        fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;]
                      )
                    ),
                    0,
                    fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{e78c5b35-026f-4713-8404-05077c6c9152}Cantidad&amp;#39;] * fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{47f4bf32-2e41-4c5a-a7e7-9fc7786bd753}PrecioUnit&amp;#39;]
                  ),
                  saveInto: {
                    fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;]
                  },
                  required: true,
                  validations: {
                    if(
                      a!isNotNullOrEmpty(
                        fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;]
                      ) = false,
                      &amp;quot;&amp;quot;,
                      if(
                        fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{beb59a89-a332-46d3-b718-a8285f58f942}Importe&amp;#39;] &amp;lt; 0,
                        &amp;quot;El importe debe ser superior a cero&amp;quot;,
                        &amp;quot;&amp;quot;
                      )
                    )
                  },
                  align: &amp;quot;RIGHT&amp;quot;
                ),
                a!integerField(
                  value: fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{bd0fe4ca-322c-422e-89e5-97e5194817a1}CantRecepAcum&amp;#39;],
                  saveInto: {
                    fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{bd0fe4ca-322c-422e-89e5-97e5194817a1}CantRecepAcum&amp;#39;]
                    , a!save(ri!recordLineasRecep[&amp;#39;recordType!{20fd7d81-a6d6-4fee-9219-afab0a7df2e4}CPF Lineas Recepciones.fields.{5b2d9770-999d-481c-927b-a2d7fc000098}CantidadRecep&amp;#39;], fv!item[&amp;#39;recordType!{495578a9-1b23-4253-8145-6418faabe727}CPF Lineas Pedido.fields.{bd0fe4ca-322c-422e-89e5-97e5194817a1}CantRecepAcum&amp;#39;])
                  }
                  ),

                a!richTextDisplayField(
                  value: {
                    a!richTextIcon(
                      icon: &amp;quot;times-circle&amp;quot;,
                      link: a!dynamicLink(
                        value: remove(local!DatosLineas, fv!index),
                        saveInto: local!DatosLineas
                      ),
                      linkstyle: &amp;quot;STANDALONE&amp;quot;,
                      color: &amp;quot;NEGATIVE&amp;quot;
                    )
                  }
                )
              }
            )
          )
        )
      }
    ),
    a!buttonLayout(
      primaryButtons: {
        a!buttonWidget(
          label: &amp;quot;Completar Recepci&amp;#243;n&amp;quot;,
          saveInto: a!save(
            /*cambiar por recordLineasRecepciones*/
            ri!recordLineasRecep,
            local!DatosLineas
          ),
          submit: true,
          style: &amp;quot;PRIMARY&amp;quot;,
          validate: true
        )
      },
      secondaryButtons: {
        a!buttonWidget(
          label: &amp;quot;Cancelar&amp;quot;,
          value: true,
          saveInto: ri!cancel2,
          submit: true,
          style: &amp;quot;NORMAL&amp;quot;,
          validate: false
        )
      }
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to create an editable grid from a record</title><link>https://community.appian.com/thread/118831?ContentTypeID=1</link><pubDate>Fri, 08 Sep 2023 08:13:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6af337f6-2d21-473a-9814-41125bf1b8c1</guid><dc:creator>Ignacio Mor&amp;#225;n</dc:creator><description>&lt;p&gt;Hi Carlos,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;to add this link, and then display a new field below the grid, you should add a dynamic link in a new column of the read only grid and then this dynamic link will save a boolean to true which is also in the &amp;quot;showWhen&amp;quot; attribute of the new field below your grid, so when you press the link the field is shown.&lt;/p&gt;
&lt;p&gt;But then you also need to save the item where you are going to save the value quantity and you must think in a solution for this.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;On my side, I&amp;nbsp;prefer creating an editable grid, where you will add the new editable column with a text field and in each field you will save the quantity of each row. The data for this grid should be&amp;nbsp;fetched again as you did in the parent interface.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to create an editable grid from a record</title><link>https://community.appian.com/thread/118827?ContentTypeID=1</link><pubDate>Fri, 08 Sep 2023 07:36:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2cd13baf-f693-4abb-96f4-6853c450c642</guid><dc:creator>carlosp5114</dc:creator><description>&lt;p&gt;Hi Ignacio! In this case, I mean that I, as a developer, must have the chance to add a new column to the grid (NOT the user).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Each row of my previous grid had a column/field called &amp;quot;quantity&amp;quot;. In my new grid, I would like to create a new column called &amp;quot;Quantity Receipt&amp;quot; (just a number&amp;nbsp;the user introduces manually)&lt;/p&gt;
&lt;p&gt;But this is my second step. First of all, I would like to &amp;quot;query&amp;quot; or &amp;quot;translate&amp;quot; my data to the new editable grid. How can I manage this? Can I make a query in my editable grid instead of creating it from zero?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;*Update: I was searching ways to pass the data of my read only grid, and I have shown a post in which selectable values are used. What do you think about this approach to save the data? Logically after that I have to show a grid again (and being able to add a column as a developer)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;In Mike&amp;acute;s explanation, I&amp;acute;m interested in the part of making an edit of the existing data after clicking the link/selected rows. I&amp;nbsp;would like to understand how to do this (passing the data and make it editable)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/pastedimage1694159217778v1.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to create an editable grid from a record</title><link>https://community.appian.com/thread/118825?ContentTypeID=1</link><pubDate>Fri, 08 Sep 2023 07:04:03 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bd909404-c8a3-482a-a1f3-90024fe0231f</guid><dc:creator>Ignacio Mor&amp;#225;n</dc:creator><description>&lt;p&gt;Hi Carlos,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What do you mean with &amp;quot;I must be able to create an extra column to introduce manually&amp;quot;. Do you mean that the final user will have the possibility to add manually a column to the grid? Or you mean you as developer will add a new column to the grid? What type of data will be managed in that new column?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>