Search Type: Posts; User: prakashpaudel
Search: Search took 0.02 seconds.
-
13 Mar 2013 2:47 AM
Jump to post Thread: Ext.String.trim has bug? by prakashpaudel
- Replies
- 2
- Views
- 189
'str' === Ext.String.trim('str ')
This should return true isn't? -
11 Mar 2013 3:18 AM
- Replies
- 4
- Views
- 419
Thanks, workspace is what I needed. Still the theming is application specific. May be I can use workspace for it too. But I am stuck at the build which seems to be a bug seen somewhere in forum....
-
11 Mar 2013 12:32 AM
- Replies
- 2
- Views
- 492
Is any newer builds available with this fix?
-
8 Mar 2013 1:22 AM
- Replies
- 4
- Views
- 419
I see, the sencha command generate each and every apps independently with all required ext framework files and even more with only one theme resources. May be I am not more familiar with sencha...
-
28 Dec 2011 4:14 AM
- Replies
- 7
- Views
- 1,561
Are you guys looking for more information??
please look at the pictures above. The Y-axis is not grew and the chart series is also not grew as I hid the other series. -
19 Dec 2011 7:52 PM
- Replies
- 7
- Views
- 1,561
How did you make the y-axis grow? I am using v4.0.7. Is there any upgrade made for this?
Here is my screenshot
Before:
30171
After:
30170 -
18 Dec 2011 8:30 PM
- Replies
- 7
- Views
- 1,561
I modified the Area.js in examples/charts directory
/*
This file is part of Ext JS 4 -
15 Dec 2011 7:52 PM
- Replies
- 7
- Views
- 1,561
REQUIRED INFORMATIONExt version tested:
Ext 4.0.7
Browser versions tested against:
Firefox (firebug 1.8.4)
Description:
When the column/bar charts legend items clicked to hide/unhide... -
6 Dec 2011 6:15 AM
- Replies
- 2
- Views
- 406
Tried with possible solutions.. nothing worked.. I think all the drags and drops in Ext is bounded to visible area by default.. I have implemented other drag and drops between panels but those drag...
-
5 Dec 2011 9:37 AM
- Replies
- 2
- Views
- 406
I have draggable panels within tab panel. The tab panel is ultimately bounded in center region of viewport. Now I want to drag the panels in tab panel so that the panel can move vertically down with...
-
12 Oct 2011 4:15 AM
Jump to post Thread: Reverse of TextMetrics by prakashpaudel
- Replies
- 2
- Views
- 523
With reference to some element, TextMetrics is able to calculate the width of some text. Is it possible to do the reverse? ie. with width provided, how many characters on a text can accomodate on...
-
15 Sep 2011 11:58 PM
Jump to post Thread: Selecting text in grid by prakashpaudel
- Replies
- 0
- Views
- 319
How to make it possible to select the text in grid? isn't there some config to enable it??
-
26 Aug 2011 12:14 AM
- Replies
- 3
- Views
- 964
sorry,
I was using older release of Ext 4, which has not included the viewready event -
25 Aug 2011 2:21 AM
- Replies
- 3
- Views
- 964
I wanted to select some nodes in data view when the view is rendered.
but the viewready event is not fired.
listeners:{
viewready: function(view){
console.log('ready')
}
} -
23 Aug 2011 9:06 PM
- Replies
- 4
- Views
- 1,588
var store = Ext.create('Ext.data.Store',{
... -
18 Apr 2011 12:31 AM
- Replies
- 2
- Views
- 2,510
Guys I had a workaround,
Ext.define('App.lib.TreeSelection',{
extend:'Ext.tree.TreePanel',
...
...
...
constructor: function(config){
var cfg = { -
17 Apr 2011 9:21 PM
- Replies
- 2
- Views
- 2,510
Is there any checkbox check event in tree panel?? I need to select all the child items on parent check, and if any child is checked, check the parent too. but could not find any check change event.....
-
30 Mar 2011 1:56 AM
Jump to post Thread: how to rebuild styles? by prakashpaudel
- Replies
- 6
- Views
- 1,535
did this work for you guys??
I am too having this issue -
8 Jun 2010 1:37 AM
- Replies
- 2
- Views
- 1,272
Try
grid.getEl().mask("Saving data");
Note: you need to unmask the grid after data saved.
grid.getEl().unmask() -
8 Jun 2010 1:33 AM
Jump to post Thread: Getting checkbox value by prakashpaudel
- Replies
- 2
- Views
- 548
chk.checked instead of chk.selected
Ext.onReady(function(){
var chk = Ext.get('activeInd');
chk.on('click', function() {
alert(chk.checked);
});
}) -
8 Jun 2010 1:29 AM
- Replies
- 3
- Views
- 1,003
I would use handler instead
{
html: 'Any Other',
handler: function(){
window.location.href="www.google.com"
}
} -
8 Jun 2010 1:09 AM
Jump to post Thread: Problem with gridFilter by prakashpaudel
- Replies
- 2
- Views
- 856
The numeric type of filters accepts the value in object format
may be
{lt:6,gt:2}
{eq:5}
Similar is the case for date type.
Try setting value like [for numeric type] -
8 Jun 2010 12:57 AM
- Replies
- 2
- Views
- 546
You are using the ArrayStore so I assume you are trying to filter the grid data locally. May be the default GridFilters filter mode is
local: false
The local:false mode try to reload the... -
8 Jun 2010 12:45 AM
Jump to post Thread: get the value of a combobox by prakashpaudel
- Replies
- 2
- Views
- 426
The name 'oficina' will send the display value. To get value field, you should retrieve it in backend by it's hidden name
name: 'oficina',
hiddenName: 'myHiddenName'
This can be retrieved as
$val... -
7 Jun 2010 11:56 PM
- Replies
- 4
- Views
- 2,181
The html code will not be evaluated, only the JS code will. Simply you need to find the <head> tag if not create one and append to body. You can use DomQuery for this. And append the script tag to...
Results 1 to 25 of 35
