日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Ext GrdPanel多种取值方式

發布時間:2023/11/29 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Ext GrdPanel多种取值方式 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一、單選行取值

1、在Store中設置ReaderID ?

<ext:Store?

?? ? ? ? ? ? ? ? ? ? ? ? ? runat="server"?

?? ? ? ? ? ? ? ? ? ? ? ? ? ID="SQry"?

?? ? ? ? ? ? ? ? ? ? ? ? ? AutoLoad="true"?

?? ? ? ? ? ? ? ? ? ? ? ? ? RemoteSort="true">?

?? ? ? ? ? ? ? ? ? ? ? ?<Reader>

?? ? ? ? ? ? ? ? ? ? ? ? ? ?<ext:JsonReader ReaderID="shid">

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<Fields>

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<ext:RecordField Name="shrz" />

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</Fields>

?? ? ? ? ? ? ? ? ? ? ? ? ? ?</ext:JsonReader>

?? ? ? ? ? ? ? ? ? ? ? ?</Reader>

?? ? ? ? ? ? ? ? ? ? ?</ext:Store>?

?2、在GrdPanel選擇方式中設置RowSelect事件

<SelectionModel>

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<ext:RowSelectionModel ID="RowSelectionModel1" runat="server">

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<AjaxEvents>

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

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

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<ExtraParams>

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<ext:Parameter Name="shid" Value="this.getSelected().id" Mode="Raw" />

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</ExtraParams>

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</RowSelect>

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</AjaxEvents>

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</ext:RowSelectionModel>

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</SelectionModel>?

?3、?CS

?protected void RowSelect(object sender, AjaxEventArgs e)

?{

?? ? ? ?string shid = e.ExtraParams["shid"];

?}

二、多選行取值

?RowSelectionModel sm = this.GrdData.SelectionModel.Primary as RowSelectionModel;

?? ? ? ?if (sm.SelectedRows.Count > 0)

?? ? ? ?{

?? ? ? ? ? ?foreach (SelectedRow row in sm.SelectedRows)

?? ? ? ? ? ?{

?? ? ? ? ? ? ? ?bl = GDData(row.RecordID);

?? ? ? ? ? ?}

?? ? ? ? ? ?if (bl)

?? ? ? ? ? ?{

?? ? ? ? ? ? ? ?sm.SelectedRows.Clear();

?? ? ? ? ? ? ? ?sm.UpdateSelection();

?? ? ? ? ? ? ? ?LoadData();

?? ? ? ? ? ? ? ?Ext.Msg.Show(new MessageBox.Config

?? ? ? ? ? ? ? ?{

?? ? ? ? ? ? ? ? ? ?Title = "系統提示",

?? ? ? ? ? ? ? ? ? ?Message = "文件歸檔成功!",

?? ? ? ? ? ? ? ? ? ?Buttons = MessageBox.Button.OK,

?? ? ? ? ? ? ? ? ? ?Icon = (MessageBox.Icon)Enum.Parse(typeof(MessageBox.Icon), "INFO")

?? ? ? ? ? ? ? ?}).Show();

?? ? ? ? ? ?}

?? ? ? ? ? ?else

?? ? ? ? ? ?{

?? ? ? ? ? ? ? ?Ext.Msg.Show(new MessageBox.Config

?? ? ? ? ? ? ? ?{

?? ? ? ? ? ? ? ? ? ?Title = "系統提示",

?? ? ? ? ? ? ? ? ? ?Message = "文件歸檔失敗!",

?? ? ? ? ? ? ? ? ? ?Buttons = MessageBox.Button.OK,

?? ? ? ? ? ? ? ? ? ?Icon = (MessageBox.Icon)Enum.Parse(typeof(MessageBox.Icon), "INFO")

?? ? ? ? ? ? ? ?}).Show();

?? ? ? ? ? ?}

?? ? ? ?}

三、多選行字段列表

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 == "flid")

?? ? ? ? ? ? ? ? ? ?{

?? ? ? ? ? ? ? ? ? ? ? ?pflid = keyValuePair.Value;

?? ? ? ? ? ? ? ? ? ? ? ?bl = BShhData(pflid);

?? ? ? ? ? ? ? ? ? ? ? ?break;

?? ? ? ? ? ? ? ? ? ?}

?? ? ? ? ? ? ? ?}

?? ? ? ? ? ?}

?? ? ? ? ? ?if (bl)

?? ? ? ? ? ?{

?? ? ? ? ? ? ? ?LoadData();

?? ? ? ? ? ? ? ?Ext.Msg.Show(new MessageBox.Config

?? ? ? ? ? ? ? ?{

?? ? ? ? ? ? ? ? ? ?Title = "系統提示",

?? ? ? ? ? ? ? ? ? ?Message = "文件取消審核成功!",

?? ? ? ? ? ? ? ? ? ?Buttons = MessageBox.Button.OK,

?? ? ? ? ? ? ? ? ? ?Icon = (MessageBox.Icon)Enum.Parse(typeof(MessageBox.Icon), "INFO")

?? ? ? ? ? ? ? ?}).Show();

?? ? ? ? ? ?}

?? ? ? ? ? ?else

?? ? ? ? ? ?{

?? ? ? ? ? ? ? ?Ext.Msg.Show(new MessageBox.Config

?? ? ? ? ? ? ? ?{

?? ? ? ? ? ? ? ? ? ?Title = "系統提示",

?? ? ? ? ? ? ? ? ? ?Message = "文件取消審核失敗!",

?? ? ? ? ? ? ? ? ? ?Buttons = MessageBox.Button.OK,

?? ? ? ? ? ? ? ? ? ?Icon = (MessageBox.Icon)Enum.Parse(typeof(MessageBox.Icon), "INFO")

?? ? ? ? ? ? ? ?}).Show();

?? ? ? ? ? ?}

?? ? ? ?}

?? ? ? ?else

?? ? ? ?{

?? ? ? ? ? ?Ext.Msg.Show(new MessageBox.Config

?? ? ? ? ? ?{

?? ? ? ? ? ? ? ?Title = "系統提示",

?? ? ? ? ? ? ? ?Message = "沒有選擇文件不能進行取消審核",

?? ? ? ? ? ? ? ?Buttons = MessageBox.Button.OK,

?? ? ? ? ? ? ? ?Icon = (MessageBox.Icon)Enum.Parse(typeof(MessageBox.Icon), "INFO")

?? ? ? ? ? ?}).Show();

?? ? ? ?}?

總結

以上是生活随笔為你收集整理的Ext GrdPanel多种取值方式的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。