Changeset 15980
- Timestamp:
- 02/13/12 02:55:25 (3 months ago)
- Location:
- trunk/studio
- Files:
-
- 9 edited
-
js/permissions_prices.js (modified) (1 diff)
-
templates/base/scripts/BxBaseStudioFormsDisplays.php (modified) (1 diff)
-
templates/base/scripts/BxBaseStudioFormsForms.php (modified) (1 diff)
-
templates/base/scripts/BxBaseStudioNavigationImport.php (modified) (1 diff)
-
templates/base/scripts/BxBaseStudioNavigationItems.php (modified) (1 diff)
-
templates/base/scripts/BxBaseStudioNavigationMenus.php (modified) (1 diff)
-
templates/base/scripts/BxBaseStudioNavigationSets.php (modified) (1 diff)
-
templates/base/scripts/BxBaseStudioPermissionsActions.php (modified) (2 diffs)
-
templates/base/scripts/BxBaseStudioPermissionsPrices.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/studio/js/permissions_prices.js
r15794 r15980 19 19 20 20 BxDolStudioPermissionsPrices.prototype.onChangeLevel = function() { 21 var iLevel = parseInt($('#bx-grid-level-' + this.sObjNameGrid).val() );21 var iLevel = parseInt($('#bx-grid-level-' + this.sObjNameGrid).val().replace('id-', '')); 22 22 document.location.href = this.sPageUrl + (iLevel > 0 ? '&level=' + iLevel : ''); 23 23 }; -
trunk/studio/templates/base/scripts/BxBaseStudioFormsDisplays.php
r15953 r15980 234 234 'attrs' => array( 235 235 'id' => 'bx-grid-search-' . $this->_sObject, 236 'onKeyup' => 'javascript:$(this).off( ); ' . $this->getJsObject() . '.onChangeFilter()'236 'onKeyup' => 'javascript:$(this).off(\'keyup\'); ' . $this->getJsObject() . '.onChangeFilter()' 237 237 ) 238 238 ); -
trunk/studio/templates/base/scripts/BxBaseStudioFormsForms.php
r15953 r15980 208 208 'attrs' => array( 209 209 'id' => 'bx-grid-search-' . $this->_sObject, 210 'onKeyup' => 'javascript:$(this).off( ); ' . $this->getJsObject() . '.onChangeFilter()'210 'onKeyup' => 'javascript:$(this).off(\'keyup\'); ' . $this->getJsObject() . '.onChangeFilter()' 211 211 ) 212 212 ); -
trunk/studio/templates/base/scripts/BxBaseStudioNavigationImport.php
r15971 r15980 185 185 'attrs' => array( 186 186 'id' => 'bx-grid-search-' . $this->_sObject, 187 'onKeyup' => 'javascript:$(this).off( ); ' . $this->getJsObject() . '.onChangeFilter()'187 'onKeyup' => 'javascript:$(this).off(\'keyup\'); ' . $this->getJsObject() . '.onChangeFilter()' 188 188 ) 189 189 ); -
trunk/studio/templates/base/scripts/BxBaseStudioNavigationItems.php
r15975 r15980 778 778 'attrs' => array( 779 779 'id' => 'bx-grid-search-' . $this->_sObject, 780 'onKeyup' => 'javascript:$(this).off( ); ' . $this->getJsObject() . '.onChangeFilter()'780 'onKeyup' => 'javascript:$(this).off(\'keyup\'); ' . $this->getJsObject() . '.onChangeFilter()' 781 781 ) 782 782 ); -
trunk/studio/templates/base/scripts/BxBaseStudioNavigationMenus.php
r15975 r15980 549 549 'attrs' => array( 550 550 'id' => 'bx-grid-search-' . $this->_sObject, 551 'onKeyup' => 'javascript:$(this).off( ); ' . $this->getJsObject() . '.onChangeFilter()'551 'onKeyup' => 'javascript:$(this).off(\'keyup\'); ' . $this->getJsObject() . '.onChangeFilter()' 552 552 ) 553 553 ); -
trunk/studio/templates/base/scripts/BxBaseStudioNavigationSets.php
r15953 r15980 362 362 'attrs' => array( 363 363 'id' => 'bx-grid-search-' . $this->_sObject, 364 'onKeyup' => 'javascript:$(this).off( ); ' . $this->getJsObject() . '.onChangeFilter()'364 'onKeyup' => 'javascript:$(this).off(\'keyup\'); ' . $this->getJsObject() . '.onChangeFilter()' 365 365 ) 366 366 ); -
trunk/studio/templates/base/scripts/BxBaseStudioPermissionsActions.php
r15971 r15980 262 262 'onChange' => 'javascript:' . $this->getJsObject() . '.onChangeLevel()' 263 263 ), 264 'value' => $this->iLevel,264 'value' => 'id-' . $this->iLevel, 265 265 'values' => array() 266 266 ); … … 299 299 'attrs' => array( 300 300 'id' => 'bx-grid-search-' . $this->_sObject, 301 'onKeyup' => 'javascript:$(this).off( ); ' . $this->getJsObject() . '.onChangeFilter()'301 'onKeyup' => 'javascript:$(this).off(\'keyup\'); ' . $this->getJsObject() . '.onChangeFilter()' 302 302 ) 303 303 ); -
trunk/studio/templates/base/scripts/BxBaseStudioPermissionsPrices.php
r15953 r15980 329 329 'onChange' => 'javascript:' . $this->getJsObject() . '.onChangeLevel()' 330 330 ), 331 'value' => $this->iLevel,331 'value' => 'id-' . $this->iLevel, 332 332 'values' => array() 333 333 );
Note: See TracChangeset
for help on using the changeset viewer.