extjs4 Questions
1
Solved
I am trying for using Ext.dom.Query.Select method to find all divs which having class name square and highlightedReactangle.Same method was working with extjs 4 , but after up grading to extjs 5 it...
Paneling asked 31/8, 2015 at 7:8
2
Solved
I am accessing a REST service which exposes these two resources, a parent resource and a child resource:
/users
/users/{userId}/account
So the resource "account" is not nested within the resour...
Lungan asked 25/7, 2013 at 9:43
5
Solved
The property width is a pixel width.
{
xtype: 'grid',
store: store,
selModel: Ext.create('Ext.selection.CheckboxModel', {
mode: 'SINGLE'
}),
layout: 'fit',
columns: [
{
text: "pum",
data...
1
Solved
I am trying to implement jasmine in my application(Ext js 5)for unit testing. For that i have created app-test file.
Ext.require('Ext.app.Application');Ext.Loader.setConfig({enabled:true});
Ext...
Penstock asked 10/8, 2015 at 15:52
2
Solved
I want a grid with only two columns, one is for name and the other for percentage. The very last row will have 'Total' as the name and the total percent as 'percentage'. This row only will be style...
Raptor asked 17/3, 2012 at 15:5
2
Solved
I'm using getClass to render the icon in the action column.
{
xtype: 'actioncolumn',
id:'actionColumnGridUsers',
width: 30,
hideable: false,
items: ['->',
{
getClass: function (v, meta, rec)...
Medico asked 7/5, 2013 at 10:3
3
Solved
I'm try to render a progress bar in grid (Ext JS), and get this error:
Object function has no method defer
What is this "magical" method? What does it do? And why is it not found?
Code:
rend...
Breger asked 16/4, 2011 at 19:17
2
Solved
I'm working with ExtJS 4.x and Sencha Architect 2.2 but this should be relevant to later versions and any application that uses the Ext.Loader class to dynamically load scripts, including Sencha To...
Isolating asked 23/6, 2015 at 1:2
2
Solved
Actually I have an ExtJs script to create form with a Window below.
var frmAccount = Ext.create('Ext.form.Panel',{
bodyPadding: 5,
frame : true,
items :[
{
xtype : 'textfield',
fieldLabel : ...
1
I am trying to build my ExtJS 4.2 application and I am using Sencha Architect 3.1 and Sencha CMD 5.1.1.39 for the OSX.
I was following this tutorial on how to build from the Terminal, and as expect...
Inspiratory asked 15/2, 2015 at 17:7
0
I have loaded manually written scripts to Extjs using: Ext.Loader.LoadScript
Ext.Loader.loadScript({
url : './a-path/testController.js',
onLoad : onLoad('loaded'),
onError : onError
});
I ha...
Kike asked 28/5, 2015 at 12:42
2
Solved
I am using two tabpanels (for e.g T1 and T2). Their are two textfields and submit button in T2 as shown:
xtype: 'form',
title: 'Search',
id:'searchref',
items: [
{
xtype: 'textfield',
fieldLab...
3
Solved
So, int ExtJS we have:
"real" type name (that one that goes as first param in Ext.define)
alias
alternateClassName
xtype
The most enigmatic to me is alternateClassName.
Why do we actually nee...
3
Solved
When using ExtJS 4+ with asynchronous loading one would be familiar with this sort of warning:
[Ext.Loader] Synchronously loading 'MY.particular.module';
consider adding Ext.require('MY.particular...
1
Solved
Where can previous versions of Extjs can be downloaded from ?
Specifically I would like to get extjs-4.1.1a and btw what is up with the 'a' is this different from extjs-4.1.1?
Staton asked 24/4, 2015 at 22:26
3
Solved
I am doing some charting work and got a single line message "Layout run failure" when nothing was being created on the chart. Looking into this I found that I have to add some additional script fil...
4
Solved
What is the equivalent to the ExtJs3 Ext.grid.ColumnModel in ExtJs4?
What I want to do is hide a column, I did something like below in ExtJs3:
grid.colModel.setHidden(1, true);
8
Solved
I have a Grid Panel, which when I leave the page, I want a check to see if any items in the store (or iterate through models/records) to check if there are any unsaved changes/additions.
I initial...
5
I have a Grid panel containing records which, on-click, will be loaded into a Form panel for editing.
On "close" of our form panel, we're calling myForm.getForm.reset(), which seems to reset the r...
3
Solved
I have an http API which (shockingly new technique) reacts on different errors setting different response statuses.
The question is - while using Ext.data.Store with some XMLHttpRequest-inside pro...
Onia asked 21/9, 2011 at 8:38
3
Solved
I have to do a POST from my ExtJs script in order to delete something from my DB:
Ext.Ajax.request({
url: 'deleteRole.html',
method: 'POST',
headers: {'Content-Type': 'text/html'},
waitTitle: ...
2
Solved
1) How to set HTML to already created panel or any other Element?
I am a beginner. I tried the below to set some content inside the HTML
var clickedElement = Ext.getCmp('id').el.child('>');
cl...
Shela asked 7/2, 2013 at 7:18
9
Solved
I have an Ext.grid.Panel (aka gridpanel) with a store, used only for client-side visual effects (i.e., nothing gets saved to the server). When I create new model instances and add them to the store...
Bicephalous asked 2/1, 2012 at 16:7
1
I am building a web application wherein the user can print a panel and its contents. I found a code as seen here and tweaked it as such:
Ext.define('My_app_name.override.form.Panel', {
override: '...
Accompaniment asked 20/2, 2015 at 2:28
6
Solved
I'm just getting started with Symfony2 and I'm trying to figure out what the correct approach is for echoing out JSON from a controller (e.g., People) for use in an ExtJS 4 grid.
When I was doing ...
Beelzebub asked 5/2, 2012 at 2:35
© 2022 - 2024 — McMap. All rights reserved.