-
17 Oct 2008 10:26 AM #51
Fixed remove item for submit
Fixed remove item for submit
I fixed the problem with removed items still being submitted by adding this line to the dispose function: Ext.fly(this.hidden).remove();
PHP Code:dispose: function(withoutEffect) {
this.fireEvent('remove', this);
Ext.fly(this.hidden).remove();
if(withoutEffect){
this.destroy();
}
else{
this.el.hide({
duration: .5,
callback: function(){
this.move('right');
this.destroy()
}.createDelegate(this)
});
}
return this;
}
-
22 Oct 2008 5:46 AM #52
Hello,
is it possible to find not only words with the beginning like
Input: 34
Found: 34567
but
Input: 34
Found: 1234567
?
-
28 Oct 2008 6:38 AM #53
-
28 Oct 2008 6:43 AM #54
If you use remote solution it's on the client side...
-
28 Oct 2008 6:47 AM #55
no I use it that way
with simpleStoreCode:mode: 'local',
-
28 Oct 2008 6:54 AM #56
A suggestion...
If it is config'ed to allow items to be typed in that don't exist in the store, as soon as a new item is "recognized", it should be encapsulated in a blue box just like items from the store (perhaps with some slight difference in the style to give a visual indication that it didn't come from the store).
-
3 Nov 2008 11:45 PM #57
New hotmail implementation of this feature.
As I say few days ago
in hotmail you can select "pre-defined" values or "free-values".
View image....
-
10 Nov 2008 9:37 AM #58
I've found a bug.
When you first load the demo page (http://efattal.fr/extjs/examples/boxselect/) and press 'backspace' there is an error:
When you add one value and you press 'backspace' it works.Code:this.lastValue is undefined (line 79)
I don't know how to resolve this problem. But I hope this post can help you to improve this extension.
-
11 Nov 2008 1:55 AM #59
Hello
i hava problems using this extension. I use extjs 2.1 and if i use boxselect i get this error
with this pice of codePHP Code:ct is null
this.el = ct.createChild({ tag: 'li' }, this.maininput);
Ext.ux.B...Select.js (Linie 347)
Any hints?PHP Code:var select = new Ext.ux.BoxSelect({
fieldLabel: 'State',
resizable: true,
name: 'to[]',
anchor:'100%',
store: store_states,
mode: 'local',
displayField: 'state',
displayFieldTpl: '{state} ({abbr})',
valueField: 'abbr',
addUniqueValues: false,
value: new Ext.data.ArrayReader({
id: 0
}, Ext.data.Record.create([
{name: 'abbr'},
{name: 'state'}
])).readRecords([['AL', 'Alabama'], ['NY', 'New York'], ['MN', 'Minessota']]).records
//value: ['AL', 'NY', 'MN']
//value: 'AL, NY, MN'
});
Bastian
-
11 Nov 2008 4:36 AM #60
I'm having the exact same problem efiebba! :/



Reply With Quote