Click here to Skip to main content
15,881,803 members
Everything / Hosted Services / ExtJS

ExtJS

ExtJS

Great Reads

by Ashwin. Shetty
Getting started on Docker with Windows OS and Hosting nodejs app inside a container
by Sander Rossel
The fifth in a series on MEAN web development.
by Alexey Solonets
In this tip, you will learn how to create a component with configuration properties and bind to them using MVVM.
by Alexey Solonets
Completing Part 1 and making ViewModels isolated

Latest Articles

by Alexey Solonets
In this tip, you will learn how to create a component with configuration properties and bind to them using MVVM.
by Alexey Solonets
Completing Part 1 and making ViewModels isolated
by Ashwin. Shetty
Getting started on Docker with Windows OS and Hosting nodejs app inside a container
by Sannyok
Extension of standard pagingtoolbar

All Articles

Sort by Title

ExtJS 

4 Sep 2012 by rAZHere
#itemId Doesn't Work as a controlQuery in extjs. How to solve this ?Thanks in advance
2 Jul 2013 by siddharth629
Sir ,When ever I am generating a excel report on live then a authentication windows is appear but when ever I am generating the same excel report on same criteria then it got generated...Plz help some one help help .. or i am trying to open an excel file on the clients pc using ...
28 Aug 2012 by vaibhavk12
How to add and remove the button handler dynamically in extjs
28 Aug 2012 by vaibhavk12
var btn = Ext.create('Ext.Button', { text: 'Click me', renderTo: Ext.getBody()});btn.on("click", addFn);function addFn(){ alert("add 1");}btn.on("click", addFn2);function addFn2(){ alert("add 2");}btn.setHandler(addHandler);function addHandler(){ ...
27 Feb 2012 by Bikash Shrestha From Nepal
hello everyone, I need some help.I am developing an application architecture using Asp.Net,WCF,ExtJS 4.Till now the application works like this:1) extjs client sends ajax request to asp.net handler file(.ashx file), the2) handler calls WCF service, then3) WCF sends back c#...
26 Mar 2013 by Vasudevan Deepak Kumar
I am trying to evaluate between the JavaScript frameworks extJs and Dojo for a widget development. Both seem to be promising. The former is a commercial tool besides little heavy framework and latter is opensource. Or can we have something using jQuery itself?
26 Mar 2013 by Zoltán Zörgő
You take it in the wrong way. Some might share with you their experience with one or the other framework, but I don't think you might not get more detailed comparison than this one: http://en.wikipedia.org/wiki/Comparison_of_JavaScript_frameworks[^].Still, I suggest you better specify your...
20 Dec 2012 by kad_87
I'm building a web application, in wich i have an ExtJS (4.1) GridPanel, from wich i'm willing to export data as an XML (meant to be open with Excel), this procedure should be server side, so the server will send a link to the client. And this is my problem. I don't know how to write my...
20 Dec 2012 by Adam R Harris
Using JavaScript and a WebService you aren't going to be able to save a byte array to the file system. What you should do is create a generic download page that accepts a *unique 1 time key* (maybe a GUID) that points to the file to download on the query string. Then from your client side page...
20 Dec 2012 by kad_87
Your answer seem logic to me, I'm working on a solution that I found out, if it doesn't work I will take a look at your solution. Thanks for the quick answer ! Best regards !
18 Oct 2013 by siddharth629
i have a grid in script folder and i want to call or load that grid from default.aspx page please i am looking for the sutable example
3 Sep 2012 by rAZHere
How can we clone store in extjs ?
28 Feb 2018 by softprga
on my page, there is list of nearby than 6k. the code in js Ext.define('DCT.ComboField', { extend: 'Ext.form.ComboBox', shadow: false, typeAhead: true, forceSelection: true, queryMode: 'local', valueField: 'code', displayField: 'display', valueNotFoundText: '', inputXType:...
28 Feb 2018 by CHill60
No user in the world is going to appreciate having a combobox with 6k entries in it! Find a way to limit what is in the list and as if by magic performance will improve. Examples of ways you can limit what is there is to have cascading comboboxes (selecting a category from the first shows the...
1 Jun 2012 by NK0205
i want to add a combobox in my extjs grid column.i dont want that combobox to be displayed on click on the column but it should be there by default.i have a code where the combobox appears when i click on the grid column.but that is not my requirement.how to do it?can anyone help?
1 Jun 2012 by abhinavvijay
explain your problem in detail
12 Aug 2016 by Florian Rappl
We utilize the Microsoft Bot Framework in conjunction with LUIS to make a Node.js powered bot available online via an ASP.NET Web API proxy. A software mock for the smart home system is supplied. Likewise a tutorial for a hardware mock using the CC3200 and / or sensor tags is provided.
31 Oct 2013 by jaipoint
Am Creating Toolbar Which Is like Stack Overflow having Like This Am Creating Please Go Down you will see Pagination.Now Am stack in between how processed. i have created 4 buttons which are current page, its next page, and second and last page. now i want to create next button on click of 2...
19 Jun 2014 by reshma786
Hi,i am new to EXT-JS.i have one textfeild and button in the form. By default the button is disable. When ever user enter any value to textbox then button will enable otherwise button will be disabled. please help if any one know how to handle with EXt-JS code.
19 Jun 2014 by W Balboos, GHB
For Regular JavaScript, one would have the following:An onkeyup even for the textbox (I happen to like key-up), adding an 'onchange' is also OK in case of a cut-and pastedAn ID for your buttonIn the handler for the onkeyup/onchange events, use DOM to enable/disable button based upon...
27 Apr 2012 by Kashsolai
Out of stack space error throws when using Extjs Minified version.When debugged, it seems error is in Ext.JSON part.Anbody knows what is the solution to this or help me to how do i proceed further?
30 Mar 2017 by Alexey Solonets
In this tip, you will learn how to create a component with configuration properties and bind to them using MVVM.
30 Mar 2017 by Alexey Solonets
Completing Part 1 and making ViewModels isolated
4 Feb 2014 by Selva K
You need to use Proxy Type as 'jsonp'createStore : function() { var me = this; me.createDataModel(); var store = Ext.create("Ext.data.Store", { model : "tescoModel", id : "tescoStore", autoLoad : true, ...
19 Feb 2014 by Er Abhay Shukla
Try Loader feature of EXTJS - loader: { url: 'YourSourceUrl', renderer: 'component', autoLoad: true }autoload: true, will load data automatically on initial loading.
7 Jan 2013 by Member 9736263
Hey guys,I'm building an EXT JS project with a grid. Its store is defined with the following:createStore : function() { var me = this; me.createDataModel(); var store = Ext.create("Ext.data.Store", { model : "tescoModel", id ...
27 Dec 2011 by Cool Bhakti
I am new to Ext js and facing certain problem in working with it. Can someone help me out?Following is the code I am working on. Account Grid
20 Mar 2013 by Yaseer Arafat
I am trying to create a Dashboard.When I will click in a dashboard Item control.Grid panel willload correspondent data.Its working fine.No problem.I can load data on click of the Icons.Pagination is fine.Everything works perfectly.But my problem is when I have change paging of the...
3 Apr 2020 by Amlan Sengupta
I am using EXT.NET.MVC5 controls in my application. The version I am using is 3.3.0 for EXT.NET.MVC and the EXT.NET.Utilities version is 2.5.0. I am facing a page reposition issue while modifying the value of the labels. For example, if I am...
31 Mar 2015 by Bob712
I am building ext.net mvc project I have a tabpanel that should be disabled then enabled again the problem is that after the tabpanel is enabled its items are banned. Any solution please?
8 Apr 2015 by Bob712
add "MaskOnDisable(false)" property to tabpanel
16 Jul 2015 by Amir Krish
I have created a panel and placed into the windows. when I click OK button in Window I can get the value of the panel. var FormPanel = Ext.create('Ext.form.Panel', { id: 'formpanel', frame: true, renderTo: Ext.getBody(), ...
9 Jan 2015 by AnkitkJain
ExtJs-JavaScript framework for beginners
7 Oct 2016 by Sannyok
Extension of standard pagingtoolbar
23 Feb 2014 by 7045Jeegnesh
we used extjs grid in our application, it's working fine in all the Internet Browser,Ipad ,Iphone ,Android phones yet..but now with jellybean 4.4.2, we face a problem in all android i-pad that is Extjs Grid is not loading value on first time load, we always need to refresh it.why this is...
12 Nov 2013 by kanjolia gopal
Hi can you send me the example code
6 Feb 2014 by udaybhaskars
I am trying to edit an treepanel row in extjs and i want to foucs and mouse cursor to move for a partcular cell in the selected row.Please help me.
19 Feb 2014 by Er Abhay Shukla
Your can add code inside listeners>>itemclickif you have more than one cell inside the tree node.var tree = Ext.create('Ext.tree.Panel', { store: store, renderTo: Ext.getBody(), height: 300, width: 250, listeners:{ itemclick: function(n){ //...
24 Nov 2015 by TheBigBearNow
I currently have a ExtJS class with a combo box. I have the combobox selection saved to a variable. I want to retrieve this variable in a method in a controller on a different class. formatStyleSelected = !Ext.getCmp("FormatId").value ? 0...
27 May 2013 by dpalash
In this article I have shared my way to work with ExtJS and Webservice
14 Mar 2013 by Abhishek Prakash
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 containing the image.The code responsible for...
10 Apr 2013 by symonsarwar
I have seen so many examples from senchaBut now i want to dive into develop an application with extjs.I could not find any help from anywhere.Basically how to interact with data using sql database through json store. My company wants me to build webservice with extjs for large ERP.Please...
12 Nov 2013 by kanjolia gopal
send me an example code of sencha extJS with asp.net or asp.net mvc
5 Jan 2014 by Selva K
http://docs.sencha.com/extjs/4...
21 Dec 2012 by kad_87
I am currently developping a ASP.NET (C#) application, iin wich I use ExtJS 4.1 for the presentation layer. I want to add a form for uploading file (photos or wathever ...), the problem is that i don't know what to put in my WebService ? ! Anyone can guide me to the right direction ? any help...
21 Dec 2012 by CHill60
Look at the links from http://stackoverflow.com/questions/13991717/files-upload-extjs-4-1-c-sharp[^]Not sure that you will find any better solutions to start from
23 Apr 2014 by User212
Ext.view.BoundListKeyNav.overr...
27 Nov 2014 by Karthikeyan Mathiyalagan
Hi, I am using extjs grid panel to load the data and deault row selection with grid panel render listener.my question is after default row selection i need to get specified column value in selected row it's possible to get the selected value in default onload row selection.Thankskarthik
24 Oct 2016 by Ashwin. Shetty
Getting started on Docker with Windows OS and Hosting nodejs app inside a container
23 Dec 2015 by Ashwin. Shetty
Writing your first app using Mean Stack (M = MongoDB, E = Express.JS, A = Angular.JS and N = Node.js)
5 Jun 2014 by yassine101
I created a store with ExtJS 3.4 , here is my code : var itiStore = new Ext.data.JsonStore({ root: 'getItiResultResult', fields: [ {name: 'Arrival'}, {name: 'ColumnsName'}, {name: 'Error'}, {name: 'Points', mapping: 'Points'}, ...
18 Mar 2016 by Member 11276226
I am using extjs in my application. I have created the treeview and I want to implement advance search in tree view. When I type letter in textbox it search in last level childes of treeview without expanding the tree view and if search fulfil then make node visible otherwise hide that node....
7 Aug 2022 by Member 15730619
Uncaught TypeError: Cannot read properties of undefined (reading 'isBufferedStore') What I have tried: Yes, I tried but I can't understand that issue.
7 Aug 2022 by OriginalGriff
If you don't understand an error message, google it: Cannot read properties of undefined (reading 'isBufferedStore') - Google Search[^] The top link explains the problem:...
16 Apr 2016 by Member 12465148
I am using node, express, and handlebars to try to display some tweets using the twitter api and the user's input. I am really new to node, so the chain of events has me confused. Essentially, I need some way to be able to call the **twits**, and pass in the user input as the query in the...
14 Sep 2016 by Maciej Los
Start here: Sencha Architect 2 - Extjs 4.2.1 combobox with checkbox - Stack Overflow[^]
22 Jan 2015 by Member 11376714
Hi Everybody,I am new to ExtJS. Please suggets me for below query.I have a grid and in the grid I have one textbox on the toolbar of grid. I want to get the textfield value and sent that to servlet file.How I can get the textbox field value in extjs?Thanks in Advance.
10 Feb 2015 by Member 11443587
try thisExt.create('Ext.window.Window', { bodyPadding: '5 5 5 5', items: [ { xtype: 'textfield', name: 'firstName', emptyText: 'First Name', width: 250 }, { xtype: 'button', text: 'click me', handler: function() { ...
29 Jul 2013 by sunitha korakandla
Hello everyone, how to add/draw multiple margins for a panel in a page in ext.net that contains windows and tables in it. any help is greatly appreciated.
3 Sep 2013 by sunitha korakandla
We have apply field container then in field container we have to add all the code for what are necessary
30 May 2013 by Sandeep_Gosavi
I have a grid in that one column has editor of type combo. This combo fills dynamically. Right now i can show only one column in its drop down list but i want to show more than one column in its drop down list. each drop down list may contain different column names.I succeed in creating tpl...
30 May 2013 by Sandeep_Gosavi
I got an answer, thanks a lot rixo on stack overflow. It is so simple refer my code and some updations are:1. add setListTpl config to your combo though it is described in documents it does job of updating tpl and call this config from wherever you want. I called it from focus event, see...
3 Sep 2019 by Yonathan1111
Dears, How to authenticate and authorize an application that is already developed using asp.net mvc and extjs using the identityserver4? The authorization server has a login-screen which will be used to authenticate users. The scenario I faced is, I need to use a common login-screen so that I...
3 Sep 2019 by Afzaal Ahmad Zeeshan
Quote: The authorization server has a login-screen which will be used to authenticate users. The scenario I faced is, I need to use a common login-screen so that I login into the application that is already functioning? It seems as if you are trying to implement OAuth. Which means, that you want...
30 Mar 2015 by krish2013
Hi all,How to bind Combo box through wcf services from sql server using c#please share sample code to me.
16 Apr 2015 by krish2013
Hi all, i am trying to display yahoo charts based on company sticker values,here i am using http://ichart.finance.yahoo.com/b?s=msft[^]here i am trying to pass sticker value at the end of the url,like instead of 'msft' i want to pass company value.is it correct way or not...
7 Jul 2012 by vaibhavk12
http://stackoverflow.com/questions/9114496/change-background-color-of-row-extjs4[^]
3 Sep 2012 by rAZHere
How can we clear Filter in store without reflecting the store data to grid in extjs .
5 Aug 2014 by Member 10992948
Hi, I am doing my project on Ext.js 4.2. I have a doubt regarding browser's back button. I want to make browser's back button work like some banking paypal's. If user clicks on back button, The session must get cleared and must return to login page. So in order to use the content he need...
5 Aug 2014 by Member 10992948
No answers yet????? I thought I will get quick solutions here but......
11 Mar 2015 by Ram349
Hi All,i am new to ext js,i am trying to learn ext js i designedone page using ext js but i don't know how to connect database(sql server)please share some examples or document to me.
1 Jun 2012 by NK0205
i want to create a pivot grid in extjs.its topaxis has one row and left axis has one column.i want a complete code about how to create a pivot grid along with how to call the url mentioned it and then loading the pivot grid.can anyone help?And please provide complete code.
1 Jun 2012 by S.P.Tiwari
see the below link.Simple & Advanced Pivots with C# and ASP.NET[^]one suggestion from my side. why you don't do in sql. and make a dataset to bind grid.
4 Feb 2015 by krish2013
Hi all, I am new to working on Ext js.i am working on supporting ext jsproject.here i have some queries 1.i change ext js design code after run the application it's not reflected code after change the code follow any procedures in that2.is it possible to debug the ext js code,if...
16 Dec 2014 by krish2013
Hi all,i am new for ext js how to design a login page using ext js,can u share any code share to me
16 Dec 2014 by /\jmot
See..http://docs.sencha.com/extjs/5.1/components/forms.html[^]https://www.packtpub.com/books/content/login-page-using-ext-js[^]
31 Jul 2017 by Member 11729944
hii i creating a ext js 4 MVC application in which i m displaying multiple images using dataview but i want to break images into rows but m displaying images using XTemplate and my css code is in index.htm file but a m unable to break images into rows. please check my code and suggest me. ...
25 Jan 2014 by Supratik De
Hi, I am developing an application for English, Spanish , Chinese & Arabic language. Now for other cultures it is ok. But for Arabic language I need to swap the position of Label & textbox control dynamically.For an example: The Label1 & textbox1 is lying on the screen as follows for...
25 Jan 2014 by Kornfeld Eliyahu Peter
You need not.Every recent - and decent - browser switches it's origin when you set direction of your page.So create some css rules for right-to-left and left-to-right languages and use them according your needs...
26 Jan 2014 by Ahmad F Hassan
Hi!I think this might be helpful for you because I am Arabic! :)you can get the user's culture using this line of code:string _userCulture = System.Threading.Thread.CurrentThread.CurrentCulture.Name;now, for Arabic user _userCulture value will be "ar-", (e.g.. "ar-ae" for UAE...
16 Apr 2015 by krish2013
Hi all, i have bind data to grid view ,the data from sql server.here one column should have link button.how to create a link button for grid view column and when user click that column based on that name it's create separate tab for that column.any one please help to me...
25 Oct 2017 by arvindispra
In Extjs I am using rendering in Extgrid Suppose I am displaying employee record in grid Sql Fields are : [name] type varchar, [gender] type bit (0 for female and 1 for male) I am showing male/female in grid not(0/1). It's working good. Problem is that when I am exporting this data in excel...
25 Oct 2017 by Karthik_Mahalingam
You shall change the input json source by converting the bit value to the Male/Female Value. var input = [{ Name: 'xx', Gender: 0 }, { Name: 'xx', Gender: 0 }, { Name: 'xx', Gender: 0 }, { Name: 'xx', Gender: 1 }, { Name: 'xx', Gender: 1 }, { Name:...
6 Feb 2014 by udaybhaskars
I want to freeze the header of treepanel in extjs while scrolling the page the header should alwasy be freezed and visible.Please help
11 Feb 2014 by hari111r
Try to set the css style position:fixed for the header. hope this helps
23 May 2013 by tieudoan208
Hi everyboby, i have one problem. i have 1 form in 1 page aspx contain a grid. when i in another form aspx, i call form contain grid using ext.window. in ext.window i have a buttion. I want when click buttion in ext.window, its return all values in grid.I used extjsThanks all
23 Nov 2015 by Bala Chandra C
can any one help me step by step how to develop an api using mongodb,node,express for findbyid api with sample code please share me as early as possible
29 May 2013 by tieudoan208
Hi evertbody. I have a page 1.aspx contans a grid extjs. in page 2.aspx i using function ext.window to call page 1.aspx, and then how to do i get id grid in iframe page 1,.aspx.examplePage 2 when i call it var win = new Ext.Window({ title: '' ...
16 Apr 2015 by krish2013
Hi all, i have bind gridview from sqlserver using ext js, when bind that time the first colum having linkbutton please share any information to me.
2 Sep 2012 by vaibhavk12
How to hide context menu on mouse out and keep showing showin on mouseover???
11 Jan 2015 by krish2013
hi all, i am new to extjs5,just i started to learning i created one login page after click the submit button i want to open another page.how can i implement onclick event in ExtJs5here where i can declare the page.please share any idea to me.
11 Jan 2015 by CPallini
I would try to read the documentation: Using Events[^].
12 Aug 2013 by ANKIT_JHA
Hello Experts,I am curious to know how do I implement "Web Desktop" of EXTJS in my project.Thanks in advance
8 Mar 2012 by skysystech
I Use below code to load data from database using data.php file but its not getting data:-var store = new Ext.data.Store({ proxy : new Ext.data.HttpProxy({ url : 'data.php' }), reader : new Ext.data.JsonReader({ root : 'data', ...
28 Mar 2023 by jamesj74
I have a an ExtJS project where we have a container that has a number of child panels and to which the user can add as many panels as they like. The user is allowed to re-order these panels using drag and drop. When there are more panels than...
27 Nov 2014 by Basit Elahi
I am working on Extjs 5 widget columns. How can i move the focus on tab press to next widget column? i have two widget columns in my gridview and each contains a textfield. keyup event is working fine. i want to move the focus to next widget column's textfield of same row on keyup event. ...
20 Mar 2014 by jj1992
this is my code================= DynamicReport.SchemaRelationControl = function (relation) { var self =this ; var combotable=null; var createleftcombo=function (tblname){ var tables = Ext.create('Ext.data.Store', { fields: ['value', 'text'], ...
7 Aug 2022 by Vikas Hire
Hello,I got this error in my Ext JS application.this error occurs because of the store not bind properly to grid in ext js.how can I solve it?Below is my code for store, view, controller and modelcontroller-viewList: function () { var me = this; ...