jeans_larghi Posted March 4, 2013 Posted March 4, 2013 windows 7 unigui version 0.92.0.992 how can I implement unicomboBox - clientEvents - uniEvents ListConfig? http://docs.sencha.com/ext-js/4-1/#!/api/Ext.form.field.ComboBox // listConfig : Object6 An optional set of configuration properties that will be passed to the Ext.view.BoundList's constructor. Any configuration that is valid for BoundList can be included. Some of the more useful ones are: cls - defaults to empty emptyText - defaults to empty string itemSelector - defaults to the value defined in BoundList loadingText - defaults to 'Loading...' minWidth - defaults to 70 maxWidth - defaults to undefined maxHeight - defaults to 300 resizable - defaults to false shadow - defaults to 'sides' width - defaults to undefined (automatically set to the width of the ComboBox field if matchFieldWidth is true) // function OnAfterCreate(sender) { sender.typeAhead =true; sender.hideTrigger =true; ************************************** // sender.listConfig:{minWidth=1}; // How can I access the element? ************************************* } sorry for my english.... Quote
Administrators Farshad Mohajeri Posted March 4, 2013 Administrators Posted March 4, 2013 sender.listConfig={minWidth:1}; Quote
Administrators Farshad Mohajeri Posted March 4, 2013 Administrators Posted March 4, 2013 Of course you need to put it in: function OnBeforeInit(sender) { } Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.