Questions tagged [extjs4.1]

The April 2012 release of the popular JavaScript framework Ext JS. Warning: please use this tag along with the generic extjs tag. Otherwise your question will not be seen by the many thousands following extjs.

The April 2012 release of the popular JavaScript framework Ext JS.

Please also tag your question with the base tag , since many Ext JS experts only follow the base tag.

See for more information.

Useful links

1793 questions
0
votes
1 answer

How to make border layout center region infinite scrolling?

I am working in extjs4.And I have a task there I am going to work on border layout.I want to make my border layout center region get infinite scrolled i.e. it loading child components in center region at that time my footer goes on downward…
user2131948
  • 23
  • 2
  • 4
0
votes
1 answer

return a list of objects in c# (paging)

I am trying to return a list of data along with the total number of records in a json format for extjs paging toolbar. extjs looks for "count" in order to calculate the total number of paging. This is the format I want. { "count": 1, "listData":…
EagleFox
  • 1,367
  • 10
  • 34
  • 58
0
votes
1 answer

Which event is fired changing the tabpanels tab in extjs4?

I am working in extjs4 mvc.I am getting stuck at a point where I want to handle event when tab panels tab going to changed.I am using MVC structure in extjs4. I am tried with tab change event but it never get fired when tab is changed.please give me…
Pravin Mane
  • 529
  • 4
  • 13
  • 25
0
votes
0 answers

whether extjs4.1 application will support in iPad Browser and Android Tablet Browser

can anybody tell whether extjs4.1 application will support in iPad Browser and Android Tablet Browser eg(whether design and listener) if its support then why they will go with sencha for mobile channel?
mohan
  • 13,035
  • 29
  • 108
  • 178
0
votes
4 answers

change the html from controller in extjs

In my Extjs 4.1.1a project, Fiddle (this fiddle is not working, it is just for reference) I am changing the HTML(In controller) value using Ext.apply(weekNotifications,{html: {"hello"}); But the page(view) is not updating. When I checked the…
Mr_Green
  • 40,727
  • 45
  • 159
  • 271
0
votes
1 answer

Multiple timeline series in ExtJS4 chart with one store

The data, that comes from the server looks like this: [ { date: 123456789, browser: 'firefox', clicks: 123, ... }, { date: 123456789, browser: 'chrome' , clicks: 456, ... }, { date: 123456790, browser: 'firefox', clicks: 678, ... }, { date:…
K..
  • 4,044
  • 6
  • 40
  • 85
0
votes
2 answers

Update the changes made in controller to the view

How to update the changes made in the controller to the view? View Ext.define('SomeClassName', extends: 'Ext.container.Container', alias: 'widget.somewidget' /* other content here */ Controller requires: ['SomeClassName'], init: function(){ …
Mr_Green
  • 40,727
  • 45
  • 159
  • 271
0
votes
2 answers

Getting 404 Error when I start my EXT JS App in DJANGO

I want to integrate EXT JS's Portal Example in my application so I downloaded that from http://try.sencha.com/extjs/4.1.0/community/extjs4-mvc-portal/ When I try it in Java.. it runs perfectly fine.. but when I run it in Django, where my…
First Blood
  • 235
  • 1
  • 7
  • 21
0
votes
1 answer

How To Get Reference to base component in Viewport from pop up window in ExtJS 4

I'm struggling with getting references and not using Ext.getCmp(..). I understand why it is best not to use Ext.getCmp in production apps, primarily because of potential confusion around duplicated DOM id's. I've create a basic sample below that…
Peter Kellner
  • 14,748
  • 25
  • 102
  • 188
0
votes
1 answer

Syntax error Invalid Property id in Extjs 4

I am trying to load the controller from Ext app.js My code is var controller = this.getController('member.Member'); Here Member.js is a controller inside my member folder under Extjs controller folder. But I am getting error at the above line of…
anupkumar
  • 357
  • 4
  • 14
  • 28
0
votes
1 answer

ExtJS component positioning bug in IE7

The image below is a simplified version of the problem I'm facing. Both #custom and #ext-ct are hand coded. An ExtJS component is rendered to #ext-ct. Then #custom is toggled playing with its display CSS property. In IE7, showing #custom causes the…
user1636522
0
votes
2 answers

Fix the width and height of the table td

In my project, I am trying to fix the width and height of td's by doing the following: td{ max-width:100px; max-height:100px; width:100px; height:100px; overflow:hidden; word-wrap:break-word; /* CSS3 */ } Here is the fiddle But…
Mr_Green
  • 40,727
  • 45
  • 159
  • 271
0
votes
2 answers

Extjs XTemplate not rendering properly

Hi I am creating a flickr search using ExtJs and flickr API. After retrieving the json response when I am rendering the images in the panel using the XTemplate, the div is getting added to the div before it. It becomed the child of the above div…
Abhishek Prakash
  • 964
  • 2
  • 10
  • 24
0
votes
1 answer

Ext.Store Send multiple data at once

I am creating a one to many form in one transaction. I really need the record to be created entirely, or not at all. I have implemented a back code using java to rollback all operation should one of the data does not meet the requirement. Interface…
Magician
  • 1,944
  • 6
  • 24
  • 38
0
votes
0 answers

Extjs form success function doesn't execute even if url returns {"success":true}

Php Code ExtJS Code var form=this.up('form').getForm(); form.url =…
Bijoy
  • 399
  • 2
  • 7
  • 15