Search Type: Posts; User: khmurach
Search: Search took 0.02 seconds.
-
19 Sep 2012 1:17 AM
Jump to post Thread: A simple wizard (Card Layout) by khmurach
- Replies
- 3
- Views
- 524
Demo here http://ext4all.com/post/simple-extjs-wizard-with-card-layout
-
18 Sep 2012 11:06 PM
Jump to post Thread: Multiple files upload by khmurach
- Replies
- 23
- Views
- 5,899
Multiple File Upload with progress
-
18 Sep 2012 3:29 PM
Jump to post Thread: ExtJs 4: Multiple File Upload by khmurach
- Replies
- 1
- Views
- 4,448
Multiple File Upload with progress
38771 -
26 Jun 2012 6:31 AM
- Replies
- 1
- Views
- 483
Demo here http://ext4all.com/post/how-to-render-image-to-grid-field
-
26 Jun 2012 5:44 AM
- Replies
- 6
- Views
- 2,444
Problem is in combobox:
In ExtJS 4.0.7 we can set combobox value by valueField, displayField or an object.
In ExtJS 4.1.0 - only by valueField or displayField.
Demos:... -
25 Jun 2012 11:12 PM
- Replies
- 1
- Views
- 323
You should
1. this.application.addEvents
2. this.application.fireEvent
//add event
this.application.addEvents('UsersStoreLoaded');
this.getUsersStore().on('load', function (store) {
... -
25 Jun 2012 10:21 PM
- Replies
- 12
- Views
- 2,860
Do you have local rest service?
-
25 Jun 2012 8:50 AM
- Replies
- 12
- Views
- 2,860
> It also get the following error in Chrome.
Your page on localhost calls to another domain - this is cross-domain request which is not allowed in Ext.data.Store. -
25 Jun 2012 8:46 AM
- Replies
- 12
- Views
- 2,860
Use not string values:
limitParam: 'false',
pageParam: 'false',
startParam: 'false',
but boolean values:
limitParam: false,
pageParam: false, -
23 Jun 2012 11:08 PM
- Replies
- 6
- Views
- 922
You should not use "renderTo" config for windows.
Where are two way to show window:
1. Create instance and call method "show()"
var win = Ext.widget('window', {
title: 'Simple... -
23 Jun 2012 8:17 AM
- Replies
- 6
- Views
- 922
Your html element is not valid:
<div id='container'><\div>
valid version
<div id='container'></div> -
23 Jun 2012 8:03 AM
- Replies
- 1
- Views
- 428
You can listen plugin's events as other grid events.
Demo hare http://ext4all.com/post/listening-rowedit-plugin-in-controller -
23 Jun 2012 7:02 AM
- Replies
- 6
- Views
- 922
Use config
renderTo: 'container'
Demo here http://ext4all.com/post/how-to-render-gridpanel-in-html-element -
23 Jun 2012 6:44 AM
- Replies
- 12
- Views
- 2,860
Code to remove params:
proxy: {
type: 'rest',
pageParam: false, //to remove param "page"
startParam: false, //to remove param "start"
limitParam: false, //to remove param... -
23 Jun 2012 12:14 AM
- Replies
- 12
- Views
- 2,860
Which url format for paging is accepted by your server side?
-
15 Jun 2012 4:49 AM
Jump to post Thread: Simple Online ExtJS Code Editor by khmurach
- Replies
- 0
- Views
- 1,463
Simple Online ExtJS Code Editor
-
2 May 2012 8:40 AM
- Replies
- 8
- Views
- 1,347
Try this
Ext.onReady(function () {
var win = window.open('', 'form');
win.document.write("<html><title>test form</title><body><form id='form' method='POST'... -
26 Apr 2012 12:16 PM
Jump to post Thread: Infinite scroll and MVC by khmurach
- Replies
- 3
- Views
- 940
Demo here http://ext4all.com/post/extjs-4-1-grid-infinite-scroll-in-mvc
-
26 Apr 2012 11:14 AM
- Replies
- 7
- Views
- 1,967
Use
Ext.EventManager.addListener(window, 'beforeunload', function (e) {
return alert('beforeunload');
}); -
26 Apr 2012 7:10 AM
- Replies
- 7
- Views
- 1,967
Demo here http://ext4all.com/post/how-to-handle-an-event-of-javascript-window
-
26 Apr 2012 6:54 AM
- Replies
- 4
- Views
- 639
Try never use "id".
Use "name" in form fields.
Use "itemId" when you want to get component from its container:
container.getComponent('itemId') -
26 Apr 2012 6:41 AM
Jump to post Thread: detect iframe load event by khmurach
- Replies
- 2
- Views
- 1,369
Try this http://ext4all.com/post/detect-iframe-load-event
-
26 Apr 2012 5:49 AM
- Replies
- 3
- Views
- 648
You have to many nested layouts. Try to simplify your viewport.
How about http://ext4all.com/post/viewport-with-accordion-in-center -
26 Apr 2012 4:25 AM
- Replies
- 7
- Views
- 3,144
Works fine for me. Demo here http://ext4all.com/post/render-afterrender-and-boxready-in-extjs-4-1
-
26 Apr 2012 2:40 AM
- Replies
- 8
- Views
- 1,347
Do you want to open browser window or Ext.window.Window?
Results 1 to 25 of 119
