ext multi select

  1. #1

    ext multi select

     var msForm = new Ext.form.FormPanel({
            title: 'MultiSelect Test',
            width:700,
            bodyStyle: 'padding:10px;',
            renderTo: 'multiselect',
            items:[{
                xtype:"multiselect",
                fieldLabel:"Multiselect<br />(Required)",
                name:"multiselect",
                dataFields:["code", "desc"], 
                valueField:"code",
                displayField:"desc",
                width:250,
                height:200,
                allowBlank:false,
                data:[[123,"One Hundred Twenty Three"],
                    ["1", "One"], ["2", "Two"], ["3", "Three"], ["4", "Four"], ["5", "Five"],
                    ["6", "Six"], ["7", "Seven"], ["8", "Eight"], ["9", "Nine"]],
                tbar:[{
                    text:"clear",
                    handler:function(){
    	                msForm.getForm().findField("multiselect").reset();
    	            }
                }]
            }]
    })

    can i add this multi select to my coolite window? im having an "object required" javascript error when i do so, please help, im adding this through the scriptManager.Listeners.DocumentReady.Handler

  2. #2

    RE: ext multi select

    Hi joju,

    The <ext:MultiSelect> control is not currently supported, although we're looking at implementing this control right now and might be able to include with the v0.7 release.


    Geoffrey McGill
    Founder
  3. #3

    RE: ext multi select

    thanks for the response. yup i know that there is currently no <ext:multiselect> coolite control but can i add that extjs code to the page using the document on ready event? this was also how the tree panel was implemented in coolite when <ext:TreePanel> was still not existing, is that correct?

Similar Threads

  1. [CLOSED] Is it possible to Select Items of a multi select during ajax event
    By vedagopal2004 in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jul 29, 2010, 6:28 PM
  2. Multi Select select/deselect
    By Palash in forum 1.x Help
    Replies: 2
    Last Post: Sep 18, 2009, 3:49 AM
  3. multi select and top label
    By [WP]joju in forum 1.x Help
    Replies: 2
    Last Post: Sep 10, 2009, 2:01 AM
  4. Multi Select - JIT
    By amitpareek in forum Open Discussions
    Replies: 1
    Last Post: Dec 09, 2008, 9:31 AM

Posting Permissions