Questions tagged [extjs5]

Sencha Ext JS (JavaScript Framework for Rich Desktop Apps)

Sencha Ext JS is the industry's most powerful desktop application development platform with unparalleled cross-browser compatibility, advanced MVC architecture, plugin-free charting, and modern UI widgets.

Ext JS 5 has a myriad of new features and improvements. Here are some of the best:

  • Two-way data binding is a new mechanism that allows changes made in the view to be automatically written back to the model (and vice versa) without the need for custom event handlers.
  • Grid gadgets are new lightweight components useful for embedding within grid cells. Widgets and buffered updates make Ext JS grids even better, enabling richer data visualization and real-time data updates.
  • Touch-optimized charts is a new charting package that comes with features like 3D charts, financial charts, and multi-axis. It also has faster performance, cleaner code and a great experience on touch-screen devices. (The existing chart package is available as a separate package, so you can still use it.)
  • Routing allows application deep linking by translating your application's URL into controller actions and methods.
1146 questions
-1
votes
1 answer

Ext JS - Creating a new application

I have installed SenchaCmd-6.0.2.14-windows-64bit.exe and it installed into the folder C:\users\myname\bin.... I am trying to create a new app. I have tried the cmd given in the sencha site. But it says "Not a framework directory". Kindly help me to…
-1
votes
1 answer

extjs- checkboxgrid check boxs unselecting on clicking different column in grid

I am using checkboxmodel grid in extjs for display values. after selecting multiple row checkboxs, if i click different column all selected checkbox are unselecting. how to stop this. https://fiddle.sencha.com/#fiddle/18bj
CharanRoot
  • 6,181
  • 2
  • 27
  • 45
-1
votes
1 answer

How to render a form in a grid row

I'm trying to render a form within a custom row grid without success. handler: function (button, record, pressed, eOpts) { var grid = this.up('grid'); var store = grid.getStore(); var innerPanel = Ext.widget('form', { …
jose
  • 1,490
  • 3
  • 30
  • 65
-1
votes
1 answer

Handling browser refresh button in extjs

I am developing a Extjs 5.0 desktop web application. In first page i am storeing text value in singleton class using config methods and In the second page i am displaying same singleton class values using get methods. this works fine. But if the…
CharanRoot
  • 6,181
  • 2
  • 27
  • 45
-1
votes
1 answer

fireEvent('click') not working in IE11 - Extjs

I am planning to trigger a click event programatically when user presses a spacebar key. I have been used fireEvent('click') it is working for chrome, but It is not working for IE-11. I also tried, dispatchEvent for IE but it is throwing an error:…
vinod kumar
  • 15
  • 1
  • 8
-1
votes
1 answer

How to add hours to Extjs date object

I'm using extjs Date object in the format, Fri Dec 18 2015 00:00:00 GMT+0530 and hour and minute format(11:30AM), now how can I add 11.30am to date object?
vinod
  • 3
  • 2
-1
votes
1 answer

How to adjust scroll bars?

I have a main panel with layout vbox and it has two items. First item is a panel and second one a grid panel. var main= new Panel({ autoScroll :false, title:'Information', layout: { …
ROOT
  • 153
  • 4
  • 19
-1
votes
4 answers

Hide grid Panel Column programmatically ExtJs 5

I want to hide a column in grid panel of ExtJs 5 when store associated with grid panel loads .
-1
votes
1 answer

Data format for displaying items in the treepanel

I am trying to use the treepanel but I have received some data from an external api in the following format (see below), basically it's a json array that will automatically return a array with companies (B & A and T & C below) and each company would…
Martin
  • 23,844
  • 55
  • 201
  • 327
-1
votes
1 answer

ExtJS5 how not to submit empty filefield

I have a form with several filefields which I use to implement multiupload ability. Everything works fine, but when I set paths to files not for all fields, my form submits empty text. I read that setting submitEmptyText : false, config in…
antosiy
  • 131
  • 1
  • 11
-1
votes
1 answer

Valid model with child, can't use HasOne as I have no association ID?

Is this a valid model ? I doesn't seem to be working ? Maybe I have to use a HasOne, but the problem is that it has an association key and my data does not. {name:'name', type: 'string'}, {name: 'desc', type: 'string', defaultValue: 'NA'}, …
Martin
  • 23,844
  • 55
  • 201
  • 327
-1
votes
2 answers

Extjs 5 class not found when lunch application

I am using Extjs 5.0.1, trying to implement basic app. This is my folder structure: Project app controller model store view MainView.js app.js OtherFolder index.html Note: index.html file is in other location than…
user1066183
  • 2,444
  • 4
  • 28
  • 57
-1
votes
2 answers

controller.setview is not a function error

I have recently migrated my ExtJS4.2 application to ExtJS5.1. I have followed these steps to migrate: 1) Created new application with ExtJS5.1 gpl version using ExtJS Sencha Cmd6.0. 2) Copied the app\model,app\controller,app\store to 5.1…
valli
  • 31
  • 7
-1
votes
2 answers

Uncaught TypeError: binding.destroy is not a function in ExtJs 5

I am using Ext.util.StoreHolder mixin in my extjs 5.1 view.I found problem with Ext.destroy() method which throws error while destroying view having bindable mixin Ext.util.StoreHolder. I can not destroy that view, it giving me error Uncaught…
Abhijit Muke
  • 1,194
  • 3
  • 16
  • 41
-1
votes
2 answers

ComboBox in IE 10/11 be focus

Ext version: 5.1.0.107 Browser: IE 10/11 While i create a ComboBox with a value, the ComboBox will be focus after it was rendered. demo: http://ift.tt/1326fZR How can i resolve this problem?
Hayk Mantashyan
  • 328
  • 2
  • 18