Skip to main content

Posts

Showing posts with the label sencha-touch

Ext JS 4.0 providing "unconventional” data to charts

I have a store which always contains a single record. Lets say the record looks like this: {'good': 5, 'bad': 2, 'neutral': 3} How would I render that as a Pie chart ? Ext.js normally uses each record in a store as one point of the series. In my case, I have only one record and want it to be used as three points in the series.

Debugging Sencha Touch in Google Chrome: How to set a breakpoint?

while trying to debug the NestedList title bug http://www.sencha.com/forum/showthread.php?161303-NestedList-example-from-Github-updateTitleText-not-working I was able to set a breakpoint using Google Chrome -> Tools -> Developer Tools, in my own javascript, but I am not able to set any breakpoint in the sencha-touch-debug.js script. Is there a way to set a breakpoint in sencha-touch-debug.js ? Or is there any better way to debug the Sencha touch core?