Search Type: Posts; User: r4nd7263
Search: Search took 0.02 seconds.
-
28 Feb 2013 9:46 AM
Jump to post Thread: Touch-friendly theme by r4nd7263
- Replies
- 1
- Views
- 221
We found that our desktop GXT3 app actually works quite well on iPad and Android tablets except that buttons and clickables are too small and not touch friendly.
But instead of translating the... -
23 Jan 2013 10:36 AM
Jump to post Thread: CheckBoxGroup equivalent by r4nd7263
- Replies
- 2
- Views
- 544
In GXT 2, I used CheckBoxGroup to group many CheckBoxes in one field and had a custom validator to check that at least of the checkboxes is checked.
CheckBoxGroup is not in GXT 3, how do I do... -
18 Sep 2012 6:19 AM
Jump to post Thread: Retina Display by r4nd7263
- Replies
- 1
- Views
- 709
On iPhone 4 retina display, ST1 components (i.e. button, toolbar, etc.) appear half size, but Sencha Touch 2 Kitchen Sink looks fine. Does ST1 not support retina display? Can somebody confirm if...
-
29 Aug 2012 10:17 AM
Jump to post Thread: CardLayout.getPrev by r4nd7263
- Replies
- 1
- Views
- 180
What is ST2 equivalent of CardLayout.getPrev in ST1?
-
29 Aug 2012 7:31 AM
- Replies
- 1
- Views
- 373
Looking at http://docs.sencha.com/touch/2-0/#!/api/Ext.data.JsonP
What defines if the request is success or failure? I just made a request that responded HTTP STATUS 401. I thought it'd invoke... -
29 Aug 2012 5:46 AM
Jump to post Thread: How to debug using Chrome by r4nd7263
- Replies
- 4
- Views
- 788
Found the answer
http://randsphere.com/c/binbin/wp/?p=55 -
29 Aug 2012 5:14 AM
- Replies
- 4
- Views
- 761
Where do I insert this code? I tried on Ext.application launch; it didn't work for me.
-
28 Aug 2012 6:32 AM
Jump to post Thread: How to debug using Chrome by r4nd7263
- Replies
- 4
- Views
- 788
My understanding is: disableCaching is enabled (default) so the loader adds "_dc" param to dynamic loaded files. This causes Chrome to treat each load as new file thus losing the breakpoint.
I am... -
28 Aug 2012 6:12 AM
Jump to post Thread: How to debug using Chrome by r4nd7263
- Replies
- 4
- Views
- 788
I can't debug ST2 because breakpoints disappear when I reload the page.
Searched internet and found several mentions of ?breakpoint and Ext.Loader.setConfig({disableCaching: false});. But I... -
27 Aug 2012 12:26 PM
Jump to post Thread: Other dependencies by r4nd7263
- Replies
- 1
- Views
- 260
How should I declare other dependencies that do not fall in one of the 5 categories (models, views, controllers, etc.)?
In my ST1 app, I had many Helper (i.e. MyApp.helper.DbHelper) classes that I... -
27 Aug 2012 7:48 AM
- Replies
- 2
- Views
- 265
I think my problem is that I access index.html using file://, not http:// via a web server.
Chrome gives this error:
XMLHttpRequest cannot load file:///D:/temp/MyApp/app.json. Cross origin... -
27 Aug 2012 7:17 AM
- Replies
- 2
- Views
- 265
I followed this guide to generate a new app: http://docs.sencha.com/touch/2-0/#!/guide/getting_started
using:
SDK Tool: 2.0.0 beta 3
Sencha Touch 2.0.1.1
When I open index.html in browser,... -
16 Aug 2012 5:05 AM
Jump to post Thread: Loading local json by r4nd7263
- Replies
- 2
- Views
- 908
I have a json file in my www folder. I am trying to load it using ajax request:
Ext.Ajax.request({
url: "file1.json",
success: function(response, opts) {
console.log("success");
... -
6 Feb 2012 10:26 AM
- Replies
- 1
- Views
- 777
Given a TreeModel, I want to focus on the row that represents the model in TreeGrid.
Normally with regular Grid, I do
int index = grid.getStore().indexOf(m);... -
18 Jan 2012 6:25 AM
- Replies
- 1
- Views
- 859
I can't find any API docs on com.extjs.gxt.charts on this page: http://www.sencha.com/gxtdocs/
Am I missing something? -
17 Oct 2011 9:03 AM
Jump to post Thread: PhoneGap Storage Proxy by r4nd7263
- Replies
- 1
- Views
- 1,082
"Modeling Data" section of this page helps
http://www.sencha.com/learn/a-sencha-touch-mvc-application-with-phonegap/ -
17 Oct 2011 7:10 AM
Jump to post Thread: PhoneGap Storage Proxy by r4nd7263
- Replies
- 1
- Views
- 1,082
I need to implement a paging list that loads data from device local database using PhoneGap (http://docs.phonegap.com/en/1.1.0/phonegap_storage_storage.md.html#Storage)
Anyone know of an exmaple?... -
13 Oct 2011 6:41 AM
Jump to post Thread: ListField Validation by r4nd7263
- Replies
- 1
- Views
- 702
markInvalid("message"); in validateValue() works
However tracing the source code I found out setSelection() performs validation before setting selections. To make matter worse, rawValue is always... -
13 Oct 2011 5:18 AM
Jump to post Thread: ListField Validation by r4nd7263
- Replies
- 1
- Views
- 702
ListField has no setValidator method.
According to API, I override validateValue() and that works, but how do I set the error text?
I tried
this.getMessages().setInvalidText("A selection is... -
13 Oct 2011 2:39 AM
Jump to post Thread: ListField and BeanModel by r4nd7263
- Replies
- 5
- Views
- 676
No I wasn't laughing at you asking me to post the solution. I was laughing at myself for I didn't realize how simple the solution was. So simple it didn't occur to me to post the solution at first....
-
13 Oct 2011 2:30 AM
Jump to post Thread: ListField and BeanModel by r4nd7263
- Replies
- 5
- Views
- 676
:)) I shoulda studied the API a bit more before asking the question.
It was easy as
beanModel.setData("label", wrappedBean.getLabel());
beanModel.setDisplayField("label"); -
12 Oct 2011 10:06 AM
Jump to post Thread: ListField and BeanModel by r4nd7263
- Replies
- 5
- Views
- 676
Nevermind. I figured out.
-
12 Oct 2011 5:26 AM
Jump to post Thread: ListField and BeanModel by r4nd7263
- Replies
- 5
- Views
- 676
How do I set the display field if I use BeanModel for my ListField store?
I tried field.setDisplayField("bean.label");, but got JavaScriptException: (TypeError): 'bean' is undefined. -
4 Oct 2011 5:22 AM
- Replies
- 3
- Views
- 1,100
The other differences I can tell between demo and my code are I am using a BeanModelReader, and that the grid is shown in a Window.
BeanModelReader reader = new BeanModelReader();... -
4 Oct 2011 5:09 AM
- Replies
- 3
- Views
- 1,100
The vertical scrollbar on my live grid is disabled, but LiveToolItem shows that 1-11 of 31 records. So I can't scroll to view more items. I know the same RPC works for regular grid and...
Results 1 to 25 of 89
