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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
</head> | |
<body> | |
<input type="button" id="alert" onclick="onAlert()" value="Alert" /> | |
<input type="button" id="prompt" onclick="onPrompt()" value="Prompt" /> |
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.define('Sandbox.view.test.combobox.Base', { | |
extend: 'Ext.form.field.ComboBox', | |
id: 'futureCmp', | |
displayField: 'text', | |
valueField: 'id', | |
store: { | |
fields: ['id', 'text'], | |
data: [ | |
[1, 'Apples'], | |
[2, 'Oranges'] |
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
http://examples.sencha.com/extjs/6.5.0/examples/kitchensink/?classic#array-grid |
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
http://www.littlewebhut.com/articles/html_iframe_example/ |
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.define('Sandbox.view.test.combobox.Base', { | |
extend: 'Ext.form.field.ComboBox', | |
id: 'futureCmp', | |
displayField: 'text', | |
valueField: 'id', | |
store: { | |
fields: ['id', 'text'], | |
data: [ | |
[1, 'Apples'], | |
[2, 'Oranges'] |
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
http://examples.sencha.com/extjs/6.5.0/examples/kitchensink/?classic#array-grid |
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
Make | Model | Price | |
---|---|---|---|
Ford | Escort | 12000 | |
Chevy | Malibu | 14000 | |
Dodge | Ram | 20000 |
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
it('should click button widget in 3rd row', function () { | |
// fill in password field | |
ST.textField('[fieldLabel=Password]').type('a'); | |
// click login button | |
ST.button('[text=Login]').click(); | |
// do actions on Project Members grid | |
ST | |
.grid('[title^=Project Members]') | |
.rowAt(2) // get third row | |
.down('.x-btn') // traverse dom hierarchy to choose correct button |
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
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select |