Search Type: Posts; User: Zdeno
Search: Search took 0.03 seconds.
-
25 Feb 2013 6:54 AM
Jump to post Thread: ST2 - dialog show/hide by Zdeno
- Replies
- 1
- Views
- 102
Hello, is there any bug when you use following block of code:
if (!this.dialog) {
this.dialog= Ext.Viewport.add({
xtype : 'dialog'
});
}
this.dialog.show(); -
21 Jan 2013 12:20 PM
Jump to post Thread: Grid + CheckboxSelectionModel by Zdeno
- Replies
- 2
- Views
- 404
It is up to you. Im going override clients application into Ext 4. Maybe someone else need fix this probem.
-
14 Jan 2013 4:07 PM
Jump to post Thread: Grid + CheckboxSelectionModel by Zdeno
- Replies
- 2
- Views
- 404
You have CheckboxSelection model which have defines:
width : 42,
header : '<div class="x-grid3-hd-checker" style="width: 20px; margin-left: 20px;"> </div>',
However, there is still old... -
12 Jan 2013 3:35 PM
Jump to post Thread: htmlEditor - FF error by Zdeno
- Replies
- 2
- Views
- 376
I get same error as in following thread: http://www.sencha.com/forum/showthread.php?249215-Ext-Htmleditor-readOnly-js-error
NS_ERROR_FAILURE: Component returned failure code: 0x80004005... -
9 Jan 2013 6:28 AM
Jump to post Thread: copy/paste in editable extjs grid by Zdeno
- Replies
- 1
- Views
- 246
If nobody did it alrady, overwrite following plugin http://loianegroner.com/2010/03/importing-an-excel-spreadsheet-into-an-extjs-datagrid-using-datadrop-grid-plugin/ into ExtJS 4
-
9 Jan 2013 1:32 AM
Jump to post Thread: tab/button by Zdeno
- Replies
- 7
- Views
- 883
TabPanel in 4.1 uses Ext.tab.Bar and renderTemplate is a bit different
//@private renderTpl: [
'<div id="{id}-body" class="{baseCls}-body {bodyCls}<tpl if="ui"> {baseCls}-body-{ui}<tpl... -
8 Jan 2013 7:37 AM
Jump to post Thread: fieldset setTitle not sticking by Zdeno
- Replies
- 6
- Views
- 336
I didnt have a time to inspect why setTitle doesnt work in beforerender function. I just simply inspect what does this function do. What I can say now:
1) fieldset isnt rendered yet
2) legend... -
7 Jan 2013 3:54 PM
- Replies
- 1
- Views
- 160
Pure way would be create own paging toolbar. As a good start you can check source code of Ext.toolbar.Paging. Another way is override this component. Look arround the private function getPageData. I...
-
7 Jan 2013 1:56 PM
Jump to post Thread: fieldset setTitle not sticking by Zdeno
- Replies
- 6
- Views
- 336
Try this
listeners : {
beforerender : function(form) {
form.items.get(0).titleCmp.update('New title');
}
}
Live example: http://jsfiddle.net/fNjgU/1/ -
7 Jan 2013 9:14 AM
Jump to post Thread: fieldset setTitle not sticking by Zdeno
- Replies
- 6
- Views
- 336
I dont have any problem change title after render. Can you post sample code how do you change the title before render? I think there is the problem why you dont see any changes on fieldset title.
-
6 Jan 2013 2:33 PM
- Replies
- 14
- Views
- 6,464
Any news in 2013? Are you planning any changes in licensing policy ? Would by possible to buy Desktop Packager separately?
-
4 Jan 2013 3:53 PM
- Replies
- 13
- Views
- 1,816
This does not work for me in 4.2.0 with:
config.viewConfig = {
markDirty : false,
emptyText : 'strNoItems'
}; -
4 Jan 2013 3:07 PM
Jump to post Thread: Grid + Editing plugin - lastEdit by Zdeno
- Replies
- 2
- Views
- 358
Cheers mate :)
-
4 Jan 2013 2:01 PM
Jump to post Thread: Grid + Editing plugin - lastEdit by Zdeno
- Replies
- 2
- Views
- 358
Does anybody have any simple solution how to get last edited cell/row from editingPlugin except overriding the plugin? As I checked the source code there isnt any chance to get it.
-
4 Jan 2013 9:05 AM
- Replies
- 2
- Views
- 323
Not sure it it isnt consequence of bad configuration but when you set config property forceFit to true and then you will try hide and show column, the hidden column had no width and is still hidden....
-
30 Dec 2012 8:07 PM
Jump to post Thread: Ext.form.field.File + setVisible by Zdeno
- Replies
- 1
- Views
- 138
Does anybody know correct way how to hide/show form.field.File? When you call
field.setVisible(false); the button is totally broken (width is arround 5px and text is missing).
The best solution i... -
28 Dec 2012 2:21 AM
Jump to post Thread: ArrayStore - idProperty by Zdeno
- Replies
- 4
- Views
- 724
I dont have any fixed structure. Thats why I ask in previous post, if possible create new record by model. Array of arrays is badly readable - without model on same place you dont know which value...
-
27 Dec 2012 3:14 PM
Jump to post Thread: ArrayStore - idProperty by Zdeno
- Replies
- 4
- Views
- 724
This didnt really fix my problem. When I check level data array, i will get array of objects:
[Object {
value = 10,
text = "Level 10"
},
Object {
value = 20,
text = "Level... -
23 Nov 2012 4:15 PM
Jump to post Thread: login screen - tactil usage by Zdeno
- Replies
- 1
- Views
- 160
If nobody did it already you can try override old ExtJS 2 plugin: http://www.sencha.com/forum/showthread.php?47025-Ext.ux.VirtualKeyboard-and-its-plugin
or try this project:... -
23 Nov 2012 4:09 PM
- Replies
- 1
- Views
- 131
Did you try override getPath function in Ext.Loader?
-
7 Nov 2012 4:06 PM
- Replies
- 16
- Views
- 1,940
Just finished simple plugin :)
Ext.define('Ext.ux.grid.HeaderContextMenu', {
alias : 'plugin.headercontextmenu',
mixins : {
observable : 'Ext.util.Observable'
},
... -
7 Nov 2012 3:44 PM
- Replies
- 16
- Views
- 1,940
As Evant wrote:
...
viewConfig : {
onBeforeCellContextMenu : function(htmlCelEl, colId, record, htmlRowEl, rowId, e) {
console.log(htmlCelEl, colId, record, htmlRowEl, rowId, eg)... -
1 Nov 2012 12:52 PM
Jump to post Thread: Form + Combobox by Zdeno
- Replies
- 2
- Views
- 374
I would like to set value to the combobox when JsonStore isnt loaded yet. I know both values for valueField and diplayField.
-
30 Oct 2012 2:06 PM
Jump to post Thread: Form + Combobox by Zdeno
- Replies
- 2
- Views
- 374
Hi, is possible to load value into Ext.form.field.Combobox in load callback? I tried call
form.findField(fieldName);
but this will return null. I have hiddenName property set.
Edit 1: It... -
11 Oct 2012 2:38 PM
Jump to post Thread: ArrayStore - idProperty by Zdeno
- Replies
- 4
- Views
- 724
Is possible to use idProperty on model which is assign to arraystore?
Ext.define("Level", {
extend : "Ext.data.Model",
idProperty : 'value',
fields : [
{ name: 'value',...
Results 1 to 25 of 118
