Search Type: Posts; User: BenMajor
Search: Search took 0.06 seconds.
-
10 Apr 2011 5:21 AM
Jump to post Thread: Creating an Icon Grid with ST by BenMajor
- Replies
- 19
- Views
- 8,476
Sorry for the delayed reaction to your message, dchall - I've been snowed under with work this end and haven't had a chance to check the Forums here for a while.
Well, here's a screenshot of what... -
4 Apr 2011 10:56 AM
- Replies
- 19
- Views
- 3,346
Thanks Simon, that's fantastic!
-
4 Apr 2011 8:02 AM
- Replies
- 19
- Views
- 3,346
Sorry for the late response chaps. When I tried to use window.location.href in combination with the button handler in app mode, it didn't seem to intercept, even though I was passing a valid...
-
4 Apr 2011 4:40 AM
- Replies
- 19
- Views
- 3,346
Thanks for your help, Simon. I guess that's the only option to implement it at the moment, unless any of the Sencha Touch developers can help?
For a mobile framework, I would have expected this to... -
4 Apr 2011 3:16 AM
- Replies
- 19
- Views
- 3,346
Does no-one have an answer for this?
Thanks,
Ben. -
21 Mar 2011 2:32 AM
- Replies
- 19
- Views
- 3,346
Hi,
I have an ActionSheet which is shown when a user taps on a list item. In the ActionSheet are three buttons - one to remove the contact, one to make a call to them and one to dismiss the... -
21 Mar 2011 2:24 AM
- Replies
- 7
- Views
- 2,266
The scroller object belongs to the Panel to which the List belongs. As a result, after updating your DataStore, try calling the following method:
PanelRef.scroller.scrollTo({ x: 0, y: 0 })
... -
21 Mar 2011 2:02 AM
Jump to post Thread: Deselect ListItem on Tap? by BenMajor
- Replies
- 10
- Views
- 3,439
Hi Chris,
That was fantastic and did the job precisely. Thanks for your help!
Best regards,
Ben. -
20 Mar 2011 11:06 AM
Jump to post Thread: Deselect ListItem on Tap? by BenMajor
- Replies
- 10
- Views
- 3,439
It seems that calling list.refresh() removes the highlighting, but also prevents the item from appearing in the 'x-view-selected' completely, which I don't think is good for HCI (there's no feedback...
-
20 Mar 2011 8:01 AM
Jump to post Thread: Deselect ListItem on Tap? by BenMajor
- Replies
- 10
- Views
- 3,439
Thanks for the quick reply, that seems to have prevented the error from occurring, but no deselect occurs. Am I using the method correctly?
list.deselect(list.getStore().getAt(index), true); -
20 Mar 2011 7:54 AM
Jump to post Thread: Deselect ListItem on Tap? by BenMajor
- Replies
- 10
- Views
- 3,439
Back again, and still not able to solve the problem here - sorry to be such a pain.
Here's the function I have bound to the itemTap event:
itemTap: function(list, index)
{
// Deselect... -
19 Mar 2011 5:11 AM
Jump to post Thread: Deselect ListItem on Tap? by BenMajor
- Replies
- 10
- Views
- 3,439
Thanks Stoot, this is the solution I have at the moment, but just wondered if there was a parameter built into the List constructor?
Regards,
Ben. -
18 Mar 2011 2:22 PM
Jump to post Thread: Deselect ListItem on Tap? by BenMajor
- Replies
- 10
- Views
- 3,439
Sorry, it's me again. It's been a long day today and I'm tired so perhaps I missed it, but I can't get the items in a List to deselect when showing an ActionSheet.
Essentially, I want the list to... -
18 Mar 2011 11:18 AM
- Replies
- 7
- Views
- 2,186
Oh boy do I feel silly now. Turns out there's an error in the PHP which is not saving the correct timestamp back to the database...
Sorry! :"> -
18 Mar 2011 11:10 AM
- Replies
- 7
- Views
- 2,186
Thanks, but that only brings up today's date, unfortunately. :s
-
18 Mar 2011 8:26 AM
- Replies
- 7
- Views
- 2,186
Thanks for your reply, Mitchell.
I just tried adding dateFormat: 'U' without much success. Here's the code I'm using:
{ xtype: 'datepickerfield', name: 'dob', label: 'DoB', value: user.dob,... -
18 Mar 2011 6:21 AM
- Replies
- 7
- Views
- 2,186
Hi,
I have the following code which is used to generate a Birthday field in a profile Panel in my app:
var profileForm = new Ext.form.FormPanel({
title: 'Profile',
standardSubmit : false,... -
17 Mar 2011 6:37 AM
- Replies
- 1
- Views
- 621
Just realised that the JSON data being returned isn't wrapped in a callback function, hence throwing an exception... :">
Thanks,
Ben. -
17 Mar 2011 4:02 AM
- Replies
- 1
- Views
- 621
I have been playing around with the Ext.util.JSONP.request method, and while the version in the Kitchen Sink works correctly, whenever I try it with my JSON string, I get the following error in...
-
17 Mar 2011 3:11 AM
Jump to post Thread: Parsing JSON in List component by BenMajor
- Replies
- 3
- Views
- 1,120
Sincere thanks for your help with this one Mark. That did the trick.
Great help as ever,
Ben. -
16 Mar 2011 7:24 AM
Jump to post Thread: Parsing JSON in List component by BenMajor
- Replies
- 3
- Views
- 1,120
Hello again,
Sorry for my numerous questions, but I'm trying to get to grips with Sencha Touch, and some of the API docs are a bit unclear.
I would like to know the code to parse the following... -
15 Mar 2011 2:45 PM
Jump to post Thread: Auto-create 'Back' button by BenMajor
- Replies
- 1
- Views
- 1,775
I don't know if this question has already been asked, but I tried the search function without much luck.
My question is simple really - is there an easy way to have Sencha Touch automatically... -
14 Mar 2011 12:42 AM
- Replies
- 0
- Views
- 1,239
I wonder if you could help me? I have the following code which generates a grid of vBox and hBox components. What I would like to do is align the content of each cell (a Panel object) to the middle,...
-
13 Mar 2011 1:28 PM
- Replies
- 1
- Views
- 1,292
Sorry, I just found the 'indicator' boolean... That'll teach me to search the API documents better next time!
Thanks,
Ben. -
13 Mar 2011 9:45 AM
- Replies
- 1
- Views
- 1,292
Hello again,
Sorry for the magnitude of questions today, I'm still trying to get to grips with Sencha Touch. As part of a project I'm working on, I have a carousel view which contains a dynamic...
Results 1 to 25 of 27
