Search Type: Posts; User: durlabh
Search: Search took 0.06 seconds.
-
2 Jan 2013 8:20 PM
- Replies
- 5
- Views
- 2,232
Native OS support is decent and NodeJS integration is very good. Overall, the process was simple:
1. Create standalone application
2. Zip
3. Run through the executable or combine/ create package... -
2 Jan 2013 4:14 PM
- Replies
- 5
- Views
- 2,232
I've used NodeWebKit and like it so far! https://github.com/rogerwang/node-webkit
-
8 Oct 2012 4:18 AM
Jump to post Thread: iOS GeoLocation problems... by durlabh
- Replies
- 2
- Views
- 495
It is an iOS6 bug. Initial call works fine, all subsequent ones crash!
-
20 Sep 2012 9:39 PM
Jump to post Thread: iOS6 Caching Post requests also by durlabh
- Replies
- 4
- Views
- 2,035
I've spent last 3-4 hours pulling my hair as some of our sites/ sencha touch apps have stopped working properly. On further investigation and search on the internet, found out that iOS 6 - Safari...
-
16 Jul 2012 9:44 AM
- Replies
- 4
- Views
- 1,094
It is almost 3 months old issue and a major one at that for delivering any apps using Sencha Touch
-
29 May 2012 9:06 AM
Jump to post Thread: sencha touch2: view by durlabh
- Replies
- 11
- Views
- 959
Specify the property as:
width: '100%' -
29 May 2012 8:31 AM
Jump to post Thread: sencha touch2: view by durlabh
- Replies
- 11
- Views
- 959
I do not understand clearly. I assume you want to give width: '100%'.
-
29 May 2012 7:25 AM
Jump to post Thread: sencha touch2: view by durlabh
- Replies
- 11
- Views
- 959
Look into "requires" property. For image, use relative path.
-
29 May 2012 7:03 AM
Jump to post Thread: sencha touch2: view by durlabh
- Replies
- 11
- Views
- 959
I suggest you read the docs more carefully. First of all, you have "extend" defined two times. In addition, it might be an "access denied" problem for the image you are reading. Use debugging tools...
-
29 May 2012 5:14 AM
Jump to post Thread: sencha touch2: view by durlabh
- Replies
- 11
- Views
- 959
The default layouts/ themes in Sencha are beautiful. So, it will be better to either share your code or hosted site to have others help you in identifying where is it messed up.
-
28 May 2012 4:23 PM
Jump to post Thread: sencha touch2: view by durlabh
- Replies
- 11
- Views
- 959
Apparently you are missing the docked property for search bar. Since the layout is "fit", first item takes the whole space available in the container. Once you set the docked property for search bar,...
-
9 Apr 2012 7:33 AM
- Replies
- 140
- Views
- 72,650
Just initiated a Cleveland Sencha Users group at http://www.meetup.com/Cleveland-Sencha-Users-Group/. Looking forward to meet a few community members there!
-
16 Mar 2012 10:37 AM
- Replies
- 4
- Views
- 2,442
Try this:
Ext.override(Ext.form.Text, {
initEvents: Ext.util.Functions.createSequence(Ext.form.Text.prototype.initEvents, function () {
if (this.fieldEl) {
... -
17 Feb 2012 5:39 PM
- Replies
- 19
- Views
- 8,389
You have most probably not included the Ext library properly. Make sure that the Ext Library path is correct.
-
26 Oct 2011 7:08 PM
- Replies
- 9
- Views
- 7,877
Looks awesome!
-
19 Oct 2011 2:45 AM
- Replies
- 6
- Views
- 1,400
Looks like a nice start!
-
8 Aug 2011 6:33 AM
Jump to post Thread: TreeGrid with Row Editor (4.x) by durlabh
- Replies
- 1
- Views
- 463
It seems that this is not a tested functionality. However, following should be able to help you:
Ext.override(Ext.data.TreeStore, { indexOf: function(record) { return undefined; ... -
29 Apr 2011 8:58 PM
Jump to post Thread: Is ExtJS 4 actually final? by durlabh
- Replies
- 31
- Views
- 6,367
We have been using ExtJS since 1.x. I will have to say that since Ext 3.x, the number of bugs in each version release have been quite high. We developed a large number of applications in Ext 2.x and...
-
21 Jan 2011 11:14 AM
- Replies
- 28
- Views
- 45,517
For changing the editor, use setEditor method in beforeedit event. To give it a look of combobox being active always, you can use a renderer and return a class name that makes the rendered area look...
-
21 Jan 2011 9:49 AM
- Replies
- 28
- Views
- 45,517
You should be able to change the store data (or combobox itself) by listening to beforeedit event of the EditorGrid.
-
6 Oct 2010 12:45 PM
Jump to post Thread: Simple Calendar Panel by durlabh
- Replies
- 32
- Views
- 23,934
Look at post# 26. That should give you some idea.
-
30 Sep 2010 6:56 AM
- Replies
- 28
- Views
- 45,517
As mentioned in earlier post, check this out: http://www.sencha.com/forum/showthread.php?37781-comboboxes-with-remote-datastores-(a-solution)&p=188131#post188131
-
26 Aug 2010 4:28 PM
- Replies
- 3
- Views
- 1,029
Also take a look at this:
http://www.sencha.com/forum/showthread.php?40147-Ext.data.Store-insert-support-for-Filtered-Stores&highlight=store+insert+durlabh -
2 Jul 2010 5:27 AM
Jump to post Thread: Simple Calendar Panel by durlabh
- Replies
- 32
- Views
- 23,934
Here is a sample implementation we have with AJAX requests:
/*global Ext:false, MyApp: true */
MyApp.AjaxCalendar = Ext.extend(Ext.ux.Calendar, {
storeDateField: 'LeaveDate',
cssConfig: {... -
17 Jun 2010 1:12 PM
- Replies
- 4
- Views
- 1,207
I had slightly modified the sequence so that AjaxProxy works and it works as per documentation.
Ext.data.Connection.override({
onComplete: function(r) {
var status = r.xhr.status,...
Results 1 to 25 of 113
