[CLOSED] MultiCombo vs Renderer Problem

Page 1 of 2 12 LastLast
  1. #1

    [CLOSED] MultiCombo vs Renderer Problem

    Hello,

    I have a problem of rendering multiple values in Grid panel Multi Combo Column.
    when data binded into Grid panel, the values selected are binded correctly (using renderer function) into Multi combo text area, while weren't checked in (Multi Combo) list.
    While the case wasn't appeared when selecting one value only. (the value checked in combo list).

    Can you help to detect the problem since i revised all forum similar cases with no success.

    I am using C# language as code behind to add a dynamic Multi Combo into EXT Grid Panel as per the below:
                   GridPanel1.ColumnModel.Columns.Add(new ColumnBase[] { 
                                         new Column 
                                        {
                                         Text = fieldDispName,
                                         DataIndex = fieldDBName[i],
                                         ID=fieldDBName[i].Replace(" ", "")+"_COL",
                                         MinWidth=240,
                                         CellWrap=true,
                                         Filter={new StringFilter{ DataIndex=fieldDBName[i] }},
                                         Renderer={ Handler=string.Format("return MultiComboGrid(value, metadata, record, rowIndex, colIndex, store, '{0}')", fieldDBName[i])},
                                         Editor={
    
                                                    new Ext.Net.MultiCombo{
                                                                    
                                                                    ID=fieldDBName[i].Replace(" ", ""),
                                                                    Listeners={Select={Handler="App.direct.SelectionChange('" + fieldDBName[i] + "','540');"} },
                                                                    QueryMode=Ext.Net.DataLoadMode.Local,
                                                                    ForceSelection=true,
                                                                    StoreID=StoresIDs[CombosStoreCount],
                                                                    DisplayField="Name",
                                                                    ValueField="ID",
                                                                    Cls=ControlCLS,
                                                                    TriggerAction=Ext.Net.TriggerAction.All,
                                                                    MultiSelect=false,
                                                                    ListConfig= new BoundList{Cls="list-with-empty"}
                                                                }
                                                }
    
                                        },
                                        });
    And then using a javascript function as a renderer function for Multi Combo column:

    
    
    
    function MultiComboGrid(value, metadata, record, rowIndex, colIndex, store, customParams)
    {
        var cs = listToAray(App.ComboboxesStores.getValue(), '~');
        var mc = listToAray(App.MulticombosIDParam.getValue(), '~');
        var names = [];
        var indexes = [];
    
        if (value != "" && value != null && value != "-") {
            var splited = value.split(",");
            var FinalResults = "";
            var FinalRID = "";
            var arrayLength = splited.length;
            for (var z = 0; z< arrayLength; z++) {
                console.log(splited[z]);
    
    
                if (cs.indexOf(customParams + "_Store") != -1) {
                    
                    var i = cs.indexOf(customParams + "_Store");
                    
                    var script = "var r=App." + cs[i] + ".getById(" + splited[z] + ");";
                    console.log(script);
                    eval(script);
    
                    console.log("name: " + r.data.Name);
                    
                    names.push(r.data.Name);
    
    
                    if(FinalResults=="")
                    {
                        FinalResults = r.data.Name;
                    }
                    else
                    {
                        FinalResults = FinalResults+", "+r.data.Name;
                    }
    
              
    
                } // if (cs.indexOf(customParams + "_Store")
            
            }
    
         
    
            return names.join(",");
         
       
        }
    
        else {
           
            return value;
        }
        
    }
    Waiting your help and thank you dear.
    Last edited by fabricio.murta; Dec 13, 2019 at 2:28 PM.
  2. #2
    Hi. Could you edit your original post and re-paste your code samples with proper indentation and formatting? Posting your code samples within [CODE] tags will apply syntax highlighting.
    Geoffrey McGill
    Founder
  3. #3
    Hello @Geovision!

    I see you just posted code snippets, so we're not able to just run it from our side. By the way, I went ahead and added the missing slashes to [/code] tags you written in your original post.

    For what I could understand of your code, you are pulling the data off the stores. If I understand correctly, you want just the selected records from multicombo to be included in the renderer, right?

    If so, maybe you'd better off getting the selected values via the array returned via each combo's getSelectedIndexes() method. This will return the IDs you should fetch from the store.

    Suppose your multicombo component is stored correctly in variable myMultiCombo (as you need to dinamically fetch the multi combo ID in your test case, I'm skipping that part). You would then be able to fetch the record to print in the custom-rendered cell via:

    var selectedItemDescriptions = [];
    Ext.each(mc.getSelectedIndexes(), function(selectedIndex) {
        var record = mc.getStore().getAt(selectedIndex);
        var description = record.get("Name");
        selectedItemDescriptions.push(description);
    }
    Then you would have an array with the description for each selected items in the multi combo to lay as you need in the rendered cell.

    I tried to my best to understand your needs, but I may just have missed it. I'd suggest, if I'm not quite accurate in what you need, that we switched at once to a runnable code sample so I can more precisely fulfill your request. I cannot predict what error you're getting off the code snippets you shared.

    Hope this helps, nevertheless!
    Fabrício Murta
    Developer & Support Expert
  4. #4
    i think you didn't get my issue.

    i have a grid panel with a MultiCombo Column. when we are fetching the results from the Database and bind them to the Grid ,the MutliCombo is not updated with the retrieved results.

    Ex: MutliCombo Id's are retrieved in the same way they are saved 3 selected items (1,2,3)
  5. #5
    Hello @geovision!

    What you want is possible, but with the snippets you provided I can't say what's wrong at all. A test case would be required. Then we'd be able to tell you exactly why you don't have the values bound.

    Here's my guess for now; if again this is not right, we'll be looking forward for your repro code.

    First, you should set the field used as data index for the column as an object, in the model. Then provide an array of IDs (even if empty or single element) as the data for that field. Then the multicombo will be displayed with all IDs provided to that cell with its respective values. Important thing for the multi combo to get the initial selection is the data index field must contain an array of IDs that should be initially selected.

    Hope this helps!
    Fabrício Murta
    Developer & Support Expert
  6. #6
    hello again,

    Please find below my code :

    ASPX Page:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MultiComboExample.aspx.cs" Inherits="FFMS.MultiComboExample" %>
    <%@ Register assembly="Ext.Net" namespace="Ext.Net" tagprefix="ext" %>
    <!DOCTYPE html>
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
       
        <meta http-equiv="X-UA-Compatible" content="IE=8,chrome=1">
       
        <meta http-equiv='cache-control' content='no-cache'>
        <meta http-equiv='expires' content='0'>
        <meta http-equiv='pragma' content='no-cache'>
    
        <ext:ResourcePlaceHolder runat="server" Mode="ScriptFiles" /> 
        <ext:ResourcePlaceHolder runat="server" Mode="Style" /> 
         <title></title>
         <script src="FBFJS.js"></script>
    
    </head>
    <body>
        <form id="form1" runat="server">
        
            <ext:ResourceManager ID="ResourceManager1" runat="server" ShowWarningOnAjaxFailure="false"  DisableViewState="true" AjaxTimeout="900000">
             <Listeners>
                <DocumentReady Handler="App.direct.drawTable()" />
            </Listeners>
            </ext:ResourceManager>
    
            <ext:Viewport runat="server" ID="VP1"  Layout="BorderLayout" Cls="ViewPortStyle">
            <Items>
    
                  <ext:GridPanel ID="GridPanel1" runat="server"  Region="Center"  AutoLoad="false" AutoScroll="true"  InvalidateScrollerOnRefresh="false" Layout="FitLayout"  >
                  <Store>
                        <ext:Store ID="Store1" runat="server">
                           <Sorters>
                                  <ext:DataSorter Property="start" Direction="ASC" />
                            </Sorters> 
                        </ext:Store>
                    </Store>
                    <Plugins>
                        <ext:GridFilters runat="server" />
                        <ext:RowEditing runat="server" ClicksToMoveEditor="1" AutoCancel="false"  CancelBtnText="<%$ Resources:Language, Cancel %>"  SaveBtnText="<%$ Resources:Language, Save %>" >
                        </ext:RowEditing>
                    </Plugins>
                    <SelectionModel>
                     <ext:RowSelectionModel runat="server" Mode="Single" />
                    </SelectionModel>
                  </ext:GridPanel>
    
    
    
            </Items>
            </ext:Viewport>
    
    
         <ext:Hidden runat="server" ID="ComboboxesStores" />
        </form>
    
      
    
    
    </body>
    </html>

    ASPX.CS PAGE:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using Ext.Net;
    using System.Xml;
    using System.Web.UI.HtmlControls;
    using System.Data;
    using System.Text;
    using System.Security.Cryptography;
    using System.Text;
    using System.IO;
    using System.Text.RegularExpressions;
    
    namespace FFMS
    {
        public partial class MultiComboExample : System.Web.UI.Page
        {
            protected void Page_Load(object sender, EventArgs e)
            {
    
            }
    
            //Function that define the store (data) of Multi Combo box
            // And add Column Multi Combo into grid panel
            // Then Bind data from static xml values into grid
            [DirectMethod]
            public void drawTable()
            {
                try
                {
                    List<string> StoresIDs = new List<string>();
    
                    string xmlComboStore = "<NewDataSet xmlns=""><Table><LKPID>1</LKPID><LKPNameA>V1</LKPNameA></Table><Table><LKPID>2</LKPID><LKPNameA>V2</LKPNameA></Table><Table><LKPID>3</LKPID><LKPNameA>V3</LKPNameA></Table>-</NewDataSet>";
                    XmlDocument xdoc2 = new XmlDocument();
                    xdoc2.LoadXml(xmlComboStore);
                    XmlNodeList nodes2 = xdoc2.DocumentElement.SelectNodes("/NewDataSet/Table");
    
                    List<object> data = new List<object>();
                    data.Add(new { ID = "-1", Name = "" });
    
    
    
                    foreach (XmlNode node2 in nodes2)
                    {
                        string id = node2.SelectSingleNode("LKPID").InnerText;
                        string name = node2.SelectSingleNode("LKPNameA").InnerText;
    
                        data.Add(new { ID = id, Name = name });
                    }
                    Ext.Net.Store s = new Store();
                    s.ID = "SuperiorFunctionalLocation_Store";
                    StoresIDs.Add("SuperiorFunctionalLocation_Store");
    
                    Ext.Net.Model m = new Model { IDProperty = "ID" };
    
                    Ext.Net.ModelField mf1 = new ModelField();
                    mf1.Name = "ID";
                    m.Fields.Add(mf1);
    
                    Ext.Net.ModelField mf2 = new ModelField();
                    mf2.Name = "Name";
                    m.Fields.Add(mf2);
    
                    s.Model.Add(m);
    
    
                    s.DataSource = data;
                    s.DataBind();
                    s.AddTo(this.form1);
    
    
                    ComboboxesStores.SetValue(ArrayListToString(ref StoresIDs).ToString());
                    Ext.Net.Model model = new Model();
    
                    ModelField modelField1 = new ModelField();
                    modelField1.Name = "PK";
                    modelField1.ServerMapping = "PK";
                    model.Fields.Add(modelField1);
    
    
    
                    GridPanel1.ColumnModel.Columns.Add(new ColumnBase[] { 
                                 new Column 
                                {
                                 Text = "PK",
                                 DataIndex = "PK",
                                 //Flex = 1,
                                 MinWidth=240,
                                 CellWrap=true,
                                 Filter={new StringFilter{ DataIndex="PK" }},
                                //Renderer={Fn="myRenderer1"}
                                Editor={
    
                                            new Ext.Net.TextField{
                                                            
                                                            ID="PK",
                                                            Text="PK",
                                                            MaxLength=Convert.ToInt32(20),
                                                            EnforceMaxLength=true,
                                                            
                                                        }
                                        }
    
                                },
                                });
                    
                    
                    
                    ModelField modelField = new ModelField();
                    modelField.Name = "SuperiorFunctionalLocation";
                    modelField.ServerMapping = "SuperiorFunctionalLocation";
                    modelField.Type = ModelFieldType.String;
    
    
    
    
                    GridPanel1.ColumnModel.Columns.Add(new ColumnBase[] { 
                                         new Column 
                                        {
                                         Text = "SuperiorFunctionalLocation",
                                         DataIndex = "SuperiorFunctionalLocation",
                                         MinWidth=240,
                                         CellWrap=true,
                                         Filter={new StringFilter{ DataIndex="SuperiorFunctionalLocation" }},
                                         Renderer={ Handler=string.Format("return MultiComboGrid(value, metadata, record, rowIndex, colIndex, store, '{0}')", "SuperiorFunctionalLocation")},
                                         Editor={
    
                                                    new Ext.Net.MultiCombo{
                                                                   
                                                                    ID="SuperiorFunctionalLocation",
                                                                    QueryMode=Ext.Net.DataLoadMode.Local,
                                                                    ForceSelection=true,
                                                                    StoreID="SuperiorFunctionalLocation_Store",
                                                                    DisplayField="Name",
                                                                    ValueField="ID",
                                                                    TriggerAction=Ext.Net.TriggerAction.All,
                                                                    ListConfig= new BoundList{Cls="list-with-empty"}
                                                                }
                                                }
    
                                        },
                   }); // end  GridPanel1.ColumnModel.Columns.Add
    
    
               
    
                    Store1.Model.Add(model);
    
    
                    string Results = "<NewDataSet><Table><SuperiorFunctionalLocation>1,2</SuperiorFunctionalLocation><PK>123</PK></Table></NewDataSet>";
                    XmlDocument xdoc = new XmlDocument();
                    xdoc.LoadXml(Results);
                    XmlNodeList nodes = xdoc.DocumentElement.SelectNodes("/NewDataSet/Table");
                    System.Xml.XmlReader xmr = new XmlNodeReader(xdoc);
    
                    DataSet ds = new DataSet();
                    ds.ReadXml(xmr);
                    if (ds.Tables.Count != 0)
                    {
    
                        Store1.DataSource = ds;
                        Store1.DataBind();
    
                    }
                    GridPanel1.Render();
    
    
    
    
                }
                catch (Exception ex)
                {
    
                }
    
            }//end drawTable()
    
    
    
            //Function that convert a list to a string with values delimited with "~"
            public static string ArrayListToString(ref List<string> _ArrayList)
            {
                int intCount;
                string strFinal = "";
    
                for (intCount = 0; intCount <= _ArrayList.Count - 1; intCount++)
                {
                    if (intCount > 0)
                    {
                        strFinal += "~";
                    }
    
    
                    strFinal += _ArrayList[intCount].ToString();
                }
    
                return strFinal;
            }
            // end ArrayListToString
    
    
    
        }
    }

    JS Page (FBF.JS):

    
    
    
    function MultiComboGrid(value, metadata, record, rowIndex, colIndex, store, customParams) {
        try{
            console.log("H1");
    
            var cs = listToAray(App.ComboboxesStores.getValue(), '~');
            console.log("cs" + cs);
            var names = [];
            var indexes = [];
            
       
            value = "1,2";
            
    
    
            if (value != "" && value != null && value != "-") {
    
                var splited = value.split(",");
                var arrayLength = splited.length;
                for (var z = 0; z < arrayLength; z++) {
                    console.log(splited[z]);
    
    
                    if (cs.indexOf(customParams + "_Store") != -1) {
    
                        var i = cs.indexOf(customParams + "_Store");
    
                        var script = "var r=App." + cs[i] + ".getById(" + splited[z] + ");";
                        console.log(script);
                        eval(script);
    
                        console.log("name: " + r.data.Name);
    
                        names.push(r.data.Name);
    
                    } // if (cs.indexOf(customParams + "_Store")
    
                }
    
                return names.join(",");
    
            }
    
            else {
                //console.log('here6');
                return value;
            }
        }
        catch(ex)
        {
            cosnole.log(ex);
            return value;
        }
      
    
    }//MultiComboGrid
    
    
    
    
    
    //take a string and convert it to array. Split the string on a sepecific separator sent to the function
    function listToAray(fullString, separator) {
    
        var fullArray = [];
        if (fullString !== undefined) {
            if (fullString.indexOf(separator) == -1) {
                fullArray.push(fullString);
            }
    
            else {
    
                fullArray = fullString.split(separator);
            }
        }
    
        return fullArray;
    }; //end of listToArray
    My problem is when editing the checked values from Multi combo box , the old values isn't checked as per the below screenshots:

    a.

    Click image for larger version. 

Name:	MultiLKP_1.JPG 
Views:	196 
Size:	10.7 KB 
ID:	25300
    when loading grid panel the data are binded correctly into Multi combo box.

    b. but when editing the same multi combo box, the data disappeared and not checked as per the below screenshot
    Click image for larger version. 

Name:	MultiLKP_2.jpg 
Views:	192 
Size:	16.2 KB 
ID:	25301


    Appreciated,
    Last edited by Geovision; Dec 10, 2019 at 11:14 AM.
  7. #7
    Hello @Geovision!

    Thanks for taking the time to write the test case.

    I am trying to compile it on my side and getting an issue in where you define the ext:RowEditing plugin.

    Quote Originally Posted by ASP.NET Parse Error
    The resource object with key 'Save' was not found.
    Offending the code in your ASPX Page line 42. I believe that's not important to reproduce the issue, but wanted to double check with you, if you can check whether the sample you provided works (runs to the point of reproducing the issue), before we can continue.

    I see you cleaned up the sample in various aspects, also providing mock data in a stringified XML format, which is great! But now, if only we could run the example and see what you're getting, we could then further help.

    While we are not here to require you a 100% clean and minimized example (the smaller the sample, the better, though), we need at least something we can run at our side.
    Fabrício Murta
    Developer & Support Expert
  8. #8
    Yet, looking at your code, I am confirming my thoughts. You are forcing the provided value in the method as a comma-separated string of values, while you should be treating its value as an array of values - furthermore, you should have the store data (the client-side record) as an array of values, like I said in my post from yesterday.

    It should be instead an array because, once you select two or more values in the multi combo, the cell will receive an array of indexes that are to be checked in the combo box.

    I have converted your example above into this one-page code that runs, and I believe it reproduces your scenario still. Would you be as kind as to check this at your side, and confirm this is still reproducing the issue you're facing?

    <%@ Page Language="C#" %>
    <%@ Import Namespace="System.Xml" %>
    <%@ Import Namespace="System.Data" %>
    <!DOCTYPE html>
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <meta http-equiv="X-UA-Compatible" content="IE=8,chrome=1" />
       
        <meta http-equiv='cache-control' content='no-cache' />
        <meta http-equiv='expires' content='0' />
        <meta http-equiv='pragma' content='no-cache' />
    
         <title></title>
        <script runat="server">
            //Function that define the store (data) of Multi Combo box
            // And add Column Multi Combo into grid panel
            // Then Bind data from static xml values into grid
            [DirectMethod]
            public void drawTable()
            {
                try
                {
                    List<string> StoresIDs = new List<string>();
    
                    string xmlComboStore = "<NewDataSet xmlns=\"\"><Table><LKPID>1</LKPID><LKPNameA>V1</LKPNameA></Table><Table><LKPID>2</LKPID><LKPNameA>V2</LKPNameA></Table><Table><LKPID>3</LKPID><LKPNameA>V3</LKPNameA></Table>-</NewDataSet>";
                    XmlDocument xdoc2 = new XmlDocument();
                    xdoc2.LoadXml(xmlComboStore);
                    XmlNodeList nodes2 = xdoc2.DocumentElement.SelectNodes("/NewDataSet/Table");
    
                    List<object> data = new List<object>();
                    data.Add(new { ID = "-1", Name = "" });
    
                    foreach (XmlNode node2 in nodes2)
                    {
                        string id = node2.SelectSingleNode("LKPID").InnerText;
                        string name = node2.SelectSingleNode("LKPNameA").InnerText;
    
                        data.Add(new { ID = id, Name = name });
                    }
    
                    Ext.Net.Store s = new Store();
                    s.ID = "SuperiorFunctionalLocation_Store";
                    StoresIDs.Add("SuperiorFunctionalLocation_Store");
    
                    Ext.Net.Model m = new Model { IDProperty = "ID" };
    
                    Ext.Net.ModelField mf1 = new ModelField();
                    mf1.Name = "ID";
                    m.Fields.Add(mf1);
    
                    Ext.Net.ModelField mf2 = new ModelField();
                    mf2.Name = "Name";
                    m.Fields.Add(mf2);
    
                    s.Model.Add(m);
    
                    s.DataSource = data;
                    s.DataBind();
                    s.AddTo(this.form1);
    
                    ComboboxesStores.SetValue(ArrayListToString(ref StoresIDs).ToString());
                    Ext.Net.Model model = new Model();
    
                    ModelField modelField1 = new ModelField();
                    modelField1.Name = "PK";
                    modelField1.ServerMapping = "PK";
                    model.Fields.Add(modelField1);
    
                    GridPanel1.ColumnModel.Columns.Add(new ColumnBase[]
                    { 
                        new Column 
                        {
                            Text = "PK",
                            DataIndex = "PK",
                            MinWidth=240,
                            CellWrap=true,
                            Filter={new StringFilter{ DataIndex="PK" }},
                            Editor =
                            {
                                new Ext.Net.TextField
                                {
                                    ID="PK",
                                    Text="PK",
                                    MaxLength=Convert.ToInt32(20),
                                    EnforceMaxLength=true,
                                }
                            }
    
                        },
                    });
                    
                    ModelField modelField = new ModelField();
                    modelField.Name = "SuperiorFunctionalLocation";
                    modelField.ServerMapping = "SuperiorFunctionalLocation";
                    modelField.Type = ModelFieldType.String;
    
                    GridPanel1.ColumnModel.Columns.Add(new ColumnBase[]
                    { 
                        new Column 
                        {
                            Text = "SuperiorFunctionalLocation",
                            DataIndex = "SuperiorFunctionalLocation",
                            MinWidth=240,
                            CellWrap=true,
                            Filter = { new StringFilter { DataIndex="SuperiorFunctionalLocation" } },
                            Renderer =
                            {
                                Handler=string.Format(
                                    "return MultiComboGrid(value, metadata, record, rowIndex, colIndex, store, '{0}')",
                                    "SuperiorFunctionalLocation"
                                )
                            },
                            Editor =
                            {
                                new Ext.Net.MultiCombo{
                                    ID="SuperiorFunctionalLocation",
                                    QueryMode=Ext.Net.DataLoadMode.Local,
                                    ForceSelection=true,
                                    StoreID="SuperiorFunctionalLocation_Store",
                                    DisplayField="Name",
                                    ValueField="ID",
                                    TriggerAction=Ext.Net.TriggerAction.All,
                                    ListConfig= new BoundList{Cls="list-with-empty"}
                                }
                            }
                        },
                    }); // end  GridPanel1.ColumnModel.Columns.Add
    
                    Store1.Model.Add(model);
    
                    string Results = "<NewDataSet><Table><SuperiorFunctionalLocation>1,2</SuperiorFunctionalLocation><PK>123</PK></Table></NewDataSet>";
                    XmlDocument xdoc = new XmlDocument();
                    xdoc.LoadXml(Results);
                    XmlNodeList nodes = xdoc.DocumentElement.SelectNodes("/NewDataSet/Table");
                    System.Xml.XmlReader xmr = new XmlNodeReader(xdoc);
    
                    DataSet ds = new DataSet();
                    ds.ReadXml(xmr);
                    if (ds.Tables.Count != 0)
                    {
                        Store1.DataSource = ds;
                        Store1.DataBind();
                    }
                    GridPanel1.Render();
                }
                catch (Exception ex) { }
            }//end drawTable()
    
            //Function that convert a list to a string with values delimited with "~"
            public static string ArrayListToString(ref List<string> _ArrayList)
            {
                int intCount;
                string strFinal = "";
    
                for (intCount = 0; intCount <= _ArrayList.Count - 1; intCount++)
                {
                    if (intCount > 0)
                    {
                        strFinal += "~";
                    }
    
                    strFinal += _ArrayList[intCount].ToString();
                }
    
                return strFinal;
            }
            // end ArrayListToString
        </script>
         <script>
             function MultiComboGrid(value, metadata, record, rowIndex, colIndex, store, customParams) {
                 console.log("Renderer value is an array: " + Ext.isArray(value));
                 try {
                     console.log("H1");
    
                     var cs = listToAray(App.ComboboxesStores.getValue(), '~');
                     console.log("cs" + cs);
                     var names = [];
    
                     // this pretty much kills the method. you should use the 'value' it receives, or you are just
                     // ignoring whatever you change in your table.
                     value = "1,2";
    
                     if (value != "" && value != null && value != "-") {
    
                         var splited = value.split(",");
                         var arrayLength = splited.length;
                         for (var z = 0; z < arrayLength; z++) {
                             console.log(splited[z]);
    
                             if (cs.indexOf(customParams + "_Store") != -1) {
    
                                 var i = cs.indexOf(customParams + "_Store");
    
                                 var script = "var r=App." + cs[i] + ".getById(" + splited[z] + ");";
                                 console.log(script);
                                 eval(script);
    
                                 console.log("name: " + r.data.Name);
    
                                 names.push(r.data.Name);
    
                             } // if (cs.indexOf(customParams + "_Store")
                         }
                         return names.join(",");
                     } else {
                         //console.log('here6');
                         return value;
                     }
                 }
                 catch (ex) {
                     cosnole.log(ex);
                     return value;
                 }
             }//MultiComboGrid
    
             //take a string and convert it to array. Split the string on a sepecific separator sent to the function
             function listToAray(fullString, separator) {
    
                 var fullArray = [];
                 if (fullString !== undefined) {
                     if (fullString.indexOf(separator) == -1) {
                         fullArray.push(fullString);
                     } else {
                         fullArray = fullString.split(separator);
                     }
                 }
    
                 return fullArray;
             }; //end of listToArray
         </script>
    </head>
    <body>
        <form id="form1" runat="server">
            <ext:ResourceManager
                ID="ResourceManager1"
                runat="server"
                ShowWarningOnAjaxFailure="false"
                DisableViewState="true"
                AjaxTimeout="900000">
                <Listeners>
                    <DocumentReady Handler="App.direct.drawTable()" />
                </Listeners>
            </ext:ResourceManager>
    
            <ext:Viewport runat="server" ID="VP1" Layout="BorderLayout" Cls="ViewPortStyle">
                <Items>
                    <ext:GridPanel
                        ID="GridPanel1"
                        runat="server"
                        Region="Center"
                        AutoLoad="false"
                        AutoScroll="true"
                        InvalidateScrollerOnRefresh="false"
                        Layout="FitLayout">
                        <Store>
                            <ext:Store ID="Store1" runat="server">
                                <Sorters>
                                    <ext:DataSorter Property="start" Direction="ASC" />
                                </Sorters>
                            </ext:Store>
                        </Store>
                        <Plugins>
                            <ext:GridFilters runat="server" />
                            <ext:RowEditing runat="server"
                                ClicksToMoveEditor="1"
                                AutoCancel="false" />
                        </Plugins>
                        <SelectionModel>
                            <ext:RowSelectionModel runat="server" Mode="Single" />
                        </SelectionModel>
                    </ext:GridPanel>
                </Items>
            </ext:Viewport>
            <ext:Hidden runat="server" ID="ComboboxesStores" />
        </form>
    </body>
    </html>
    I tried to change as little as possible while improving indentation and keeping the original behavior. I have simply deleted the lines that were causing the issue I mentioned above.
    Fabrício Murta
    Developer & Support Expert
  9. #9
    Hello,

    Can you provide me a sample about what you talking about please?

    thank you for collaboration.
  10. #10
    Hello @geovision!

    I have derived the GridPanel > Data Presentation > Editor Field Mapping example into a new example:

    - Grid Panel > Data Presentation > MultiCombo Map

    This highlights what I'm thinking you need in your case:
    - Provide the grid model with an array of IDs corresponding to the multicombo's store. You may use the ext:ModelField's Convert handler if you can only get, say, a comma-separated list of strings from server's database/xml.
    - Support handling an array while rendering the results. Parse each array value to get the respective mnemonic from the multi combo's store.
    - Specify the type of the store model's field (ext:ModelField) as Object so it can hold a native JavaScript array as its value.

    Hope this helps!
    Fabrício Murta
    Developer & Support Expert
Page 1 of 2 12 LastLast

Similar Threads

  1. MULTICOMBO selecting problem...
    By antoreegan in forum 2.x Help
    Replies: 0
    Last Post: May 22, 2013, 6:10 AM
  2. [CLOSED] when gridpanel column apply renderer.format , renderer.fn not work
    By mis@adphk.com in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 12, 2013, 10:35 AM
  3. [CLOSED] Problem with Renderer & Editor
    By logicspeak in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Sep 20, 2011, 8:18 PM
  4. Replies: 1
    Last Post: Nov 11, 2010, 12:19 PM
  5. [1.0] MultiCombo Problem Selecting
    By koss in forum 1.x Help
    Replies: 4
    Last Post: Apr 15, 2010, 3:31 PM

Posting Permissions