This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.namespace('Ext.ux.dd'); | |
Ext.ux.dd.BigBrotherGridDD = Ext.extend(Ext.util.Observable, { | |
copy: true | |
,scrollable: true | |
,constructor: function(config){ | |
if (config) | |
Ext.apply(this, config); | |
// this.addEvents({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var firstCombo = new Ext.form.ComboBox({ | |
store: store_combo_1, | |
typeAhead: true, | |
forceSelection: true, | |
triggerAction: 'all', | |
emptyText:'Select a state...', | |
selectOnFocus:true, | |
id:'combo1' | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function parse_quote($matches) { | |
$bbcode = ''; | |
preg_match_all('/(\w*?)=\'(.*?)\'/msi', $matches[1], $attr_matches); | |
$attributes = array_combine($attr_matches[1], $attr_matches[2]); | |
if(!empty($attributes)) | |
{ | |
$attribute_strings = array(); | |
foreach($attributes as $key => $value) | |
{ |
NewerOlder