Sencha Ext JS is a JavaScript framework for building Rich Internet Applications (RIAs) that run in web browsers.
0
votes
1answer
14 views
Extjs - Toolbar instead of title (enable option collapsible)
i have a Item like http://jsfiddle.net/eqNRg/
{
region: 'west',
title: 'Instead of toolbar',
collapsible: true,
width: 250,
tbar : [{
...
0
votes
1answer
20 views
Can we add Events without extending Ext.util.Observable?
If I define an extjs class and i want to say addEvents inside the initComponent, is it mandatory that the class extend the Ext.util.Observable?
0
votes
1answer
16 views
Sortable lists in Ext JS 4
I'm trying to implement a sortable list in Ext JS 4. Pretty much almost exactly like the following example:
http://jqueryui.com/sortable/
I'm aware that one can create a Grid Panel with a Grid Drag ...
1
vote
0answers
12 views
extjs 4.2 - replace substring, but avoid changing tags
In a given string, e.g. "This <TERM>is</TERM> my question <TERM>for</TERM> you", I need to replace a substring.
Goal: surround substring with <MARK>-Tags for ...
0
votes
1answer
14 views
Does Ext.Onready fire only once per application
Let us say I have 5 jsps in my web app and I import the ext-all.js in all 5 jsps. In all 5 jsps, I write an Ext.onReady(function(){});
When I hit the first jsp by typing it in the browser url, will ...
1
vote
1answer
11 views
Is ext-all-debug.js equivalent to ext-all.js plus debug statements?
I have read that ext-all.js is supposed to be used for production and ext-all-debug.js. is supposed to be used for debugging. Is it safe to assume that ext-all-debug.js is ext-all.js plus a lot of ...
0
votes
1answer
10 views
Set button action in controller
I have a navigation view with one button in the toolbar. Based on the view pushed, the button's label and functionality should chang. I've managed to do this by creating many buttons and activating ...
0
votes
1answer
9 views
ComboBox with anyMatch search in ExtJS
I have a ComboBox with a remote store with local filtering.
Instead of the default filtering, by the first characters like %query, I want to filter with the contains/anyMatch mode like %query%.
I ...
1
vote
0answers
20 views
Adding a view that displays user data using store Sencha touch2
My store JSON looks like this:
"content" : {
"RecId" : "123",
"CustNo" : "123",
"Attn" : "",
"AcctManagFirst": "Sample ",
"AcctManagLast": "Sample2",
"Name": "Works",
...
0
votes
1answer
12 views
How to change the font size of a grid title - ExtJS?
I'm new to Ext but after several researches and questions on Stack Overflow, I succeeded to add pictures in grid rows, headers rows, to change font-size, font-color of header titles, etc. But I still ...
0
votes
0answers
16 views
Blogger Layout/Template Designer like plugin in Javascript/ExtJS
I want design a template/layout designer in ExtJS which should have the functionality like that of the Google Blogger template designer.
Few fixed template having panels wherein the user will ...
0
votes
1answer
22 views
Calling webservice on ext prompt
I am asking the user for an email, providing the old email.
However, I am not getting the value the user has put in when I break on the webservice that gets called.
Ext.Msg.prompt('Email', 'Please ...
0
votes
1answer
20 views
How to control height of Message Box in ExtJS
Ext.Msg.show({
title:"My Title",
msg:"Are you Sure?",
minHeight:20,
modal:true,
icon:Ext.window.MessageBox.INFO,
buttons:Ext.MessageBox.OK
...
0
votes
1answer
32 views
Extjs 4 upload success function does not react
i have a grid with an toolbar and on that toolbar an upload option is added, so the upload is alright and it works , but after the file was uploaded to the server the success function does not react.
...
2
votes
1answer
31 views
Implementing a complex data structure in ExtJS forms
We have a client with a requirement of rather complex data-model. Meaning the data-model is not only quite huge (around 500-1000 fields, nested in many objects) it is also required to send and ...