Search Type: Posts; User: nseries
Search: Search took 0.02 seconds.
-
15 Mar 2013 6:54 AM
Jump to post Thread: Chart sizing does not work by nseries
- Replies
- 1
- Views
- 122
Hi i started a new project and try to render a chart in a Tab. Version is Sencha Touch 2.1.1
Ext.define('IntegraSUN.view.ParkChart', {
extend : 'Ext.TabPanel',
xtype : 'parkchart',... -
27 Mar 2012 11:58 PM
Jump to post Thread: Template Generator for EXTJS by nseries
- Replies
- 1
- Views
- 1,042
Hi,
few weeks before i found a free template generator for ExtJS, but i lost the link :s.
Do anyone knows them? I want to generate all "default blue" images with another color. I don`t want to... -
18 Jan 2012 1:54 AM
- Replies
- 5
- Views
- 1,103
:-?
As Workaround i give all Series an own style and it works fine now. Maybe someone can find a better solution.
In the js-File there are testings for me, me.style,
With 10 series me.sytle... -
17 Jan 2012 6:37 AM
- Replies
- 5
- Views
- 1,103
If you want to get the same error you can use the line example of sencha touch charts.
Replace the sereies (line 105 - 139) with:
series: [{
type: 'line',
... -
17 Jan 2012 6:08 AM
- Replies
- 5
- Views
- 1,103
Hi,
i try to generate a chart with different count of series.
If i had more than 9 series i get the following error:
Uncaught TypeError: Cannot call method 'indexOf' of undefined -
12 Jan 2012 3:29 AM
Jump to post Thread: Render ChartPanel by nseries
- Replies
- 3
- Views
- 971
Hi,
it is a render problem with your chart.
When you rotate your ipad, the chart will be painted again.
You can try the renderTo config
renderTo: 'pnlStaVen'
Hope it helps -
12 Jan 2012 3:04 AM
Jump to post Thread: How to change axes description by nseries
- Replies
- 2
- Views
- 901
Hi,
I`ve a problem with my chart.
My Data on x-axes is a timeline (10:00, 11:00, ...)
My Data on y-axes are different numbers (138.93473, 13.232, 14.2323,...)
I have generated a column... -
4 Nov 2011 4:18 AM
Jump to post Thread: Ext.data.XmlReader by nseries
- Replies
- 5
- Views
- 562
The Error Reader is global defined in global.js
var errorReader = new Ext.data.XmlReader({ record: 'error', fields: ['code', 'message'] });
global.js is loaded before my login.js
... -
4 Nov 2011 1:52 AM
Jump to post Thread: Ext.data.XmlReader by nseries
- Replies
- 5
- Views
- 562
Hi mitchellsimoens,
thanks for your help. But i need few more informations 8-|
I changed your code to the following:
Ext.override(Ext.data.Reader, {
getTotal :... -
3 Nov 2011 2:07 AM
Jump to post Thread: Ext.data.XmlReader by nseries
- Replies
- 5
- Views
- 562
Hi,
is used in ExtJS the following lines to read error codes in Xml:
//global error reader
var errorReader = new Ext.data.XmlReader({
record: 'error',
fields: ['code', 'message'] -
26 Oct 2011 1:14 AM
- Replies
- 1
- Views
- 627
Hi,
I'm using ExtJS 3.4 and need to know the last day of the current month.
When i use new Date().getLastDayOfMonth() it returns always 1.
new Date() returns the right Date of Today.
... -
22 Feb 2010 11:21 PM
- Replies
- 0
- Views
- 409
Hi,
i have some buttons with cls, disabledcls and overcls. When i disable one of them in Firefox, Safari and Opera it works fine.
In IE the text is not white it is gray (see attachment). How... -
28 Jan 2010 12:18 AM
- Replies
- 0
- Views
- 518
Hi,
i have a question about the Editors.
I want to write an own Editor. It should be an Textfield with an Button on the right side (like Datefield).
When someone click the Button it should... -
25 Jan 2010 12:35 AM
- Replies
- 4
- Views
- 2,408
Hi Borg,
did you find a solution for this?
I´ ve tried the following code without success:
html:
<body> -
4 Jan 2010 6:46 AM
- Replies
- 2
- Views
- 1,611
Thank you condor for your excellent help!
:) -
4 Jan 2010 5:59 AM
- Replies
- 2
- Views
- 1,611
Hi,
i have a problem to read out my XML File:
Example XMl (get via Ajax):
<?xml version="1.0"?>
<root version="1.0">
<item>
<name>test</name> -
25 Nov 2009 12:59 AM
- Replies
- 1
- Views
- 1,144
Hey,
I have reas some Examples and Threads about Gridpanels, Propertygrids and so on..
Condor has give me the link to http://www.extjs.com/forum/showthread.php?t=72709 (Thanks for it).
Now... -
10 Nov 2009 5:13 AM
- Replies
- 4
- Views
- 1,148
Thank you Condor for your help.
:)
So i will use another way then the Property Grid with store. -
10 Nov 2009 4:10 AM
- Replies
- 4
- Views
- 1,148
Hi Condor,
thanks for your reply and the link to the extension.
In the API, the "store" is listed as config option. Is it just a failure in the API Doc?
I thought the Grid.Property.Panel is... -
10 Nov 2009 1:51 AM
- Replies
- 4
- Views
- 1,148
Hi,
i have a little Problem with my Ext.grid.PropertyGrid. I have created a Data.store and a data.record. Then I add the Record to the store. This work i can see that the store has my data.
... -
20 Oct 2009 6:01 AM
Jump to post Thread: Eventhandler: mousedown by nseries
- Replies
- 7
- Views
- 4,019
Thanks, but I read in the Api:
So i think it will not help, because it calls a function only on click. But I want to start a function onMouseDown (and stop it onMouseUp)
I`have tried it, but... -
20 Oct 2009 5:25 AM
Jump to post Thread: Eventhandler: mousedown by nseries
- Replies
- 7
- Views
- 4,019
Hi,
thanks for your reply.
I `ve try some different ways without a solution before. I just need help to change from click to mousedown.
In the API documentation of handler I read "A... -
20 Oct 2009 2:42 AM
Jump to post Thread: Eventhandler: mousedown by nseries
- Replies
- 7
- Views
- 4,019
Hi,
I have just started with Ext and have done some Tutorials and read Samples.
Now i have a question to event handling. I`ve not found a simple solution. May someone of you can help.
I want...
Results 1 to 23 of 23
