• 取得GridPanel选定行所有字段值


    1、前台

    <SelectionModel>

                                                               <ext:RowSelectionModel ID="RowSelectionModel2" runat="server">

                                                                  <AjaxEvents>

                                                                    <RowSelect OnEvent="RowSelectzhy" Buffer="250">

                                                                        <EventMask ShowMask="true" Target="CustomTarget" CustomTarget="#{Details}" />

                                                                         <ExtraParams>

                                                                            <ext:Parameter Name="Values" Value="Ext.encode(#{GrdDoc}.getRowsValues())" Mode="Raw" />

                                                                        </ExtraParams>

                                                                    </RowSelect>

                                                                  </AjaxEvents>

                                                            </ext:RowSelectionModel>

                                                            </SelectionModel> 

    2、后台

     protected void RowSelectzhy(object sender, AjaxEventArgs e)

        {

            string Key;

            string json = e.ExtraParams["Values"];

            Dictionary<string, string>[] companies = JSON.Deserialize<Dictionary<string, string>[]>(json);

            if (companies.Length > 0)

            {

                foreach (Dictionary<string, string> row in companies)

                {

                    foreach (KeyValuePair<string, string> keyValuePair in row)

                    {

                        Key = keyValuePair.Key;

                        if (Key == "qzid")

                        {

                            qzid = keyValuePair.Value;

                            continue;

                        }

                        else if (Key == "zhyid")

                        {

                            zhyid = keyValuePair.Value;

                            continue;

                        }

                    }

                }

            }

        }

  • 相关阅读:
    用OKR让你的员工嗨起来
    用数据让我们的OKR变得“冷酷”却更有价值
    好的想法只是OKR的开始创业者谨记
    “OKR播种机”JOHN DOERR–目标是对抗纷乱思绪的一针疫苗
    用OKR提升员工的执行力
    OKR的两个基本原则
    《OKR工作法》| 一次说太多等于什么都没说
    《OKR工作法》–让所有人承担自己的职责
    《OKR工作法》——打造一支专一的团队
    Oracle wm_concat()函数的实际运用
  • 原文地址:https://www.cnblogs.com/easypass/p/1654703.html
Copyright © 2020-2023  润新知