Search Type: Posts; User: plalx
Search: Search took 0.03 seconds.
-
23 Jul 2012 6:22 AM
Jump to post Thread: JSBuilder by plalx
- Replies
- 1
- Views
- 695
Hi all! This might not be the right place to ask this question, but I did not find another good thread.
I wrote a tool that generates a .jsb2 file from an .html file and it's working great. The... -
7 Feb 2012 10:47 AM
Jump to post Thread: Shopping Cart by plalx
- Replies
- 8
- Views
- 1,657
Hi!
First of all, the most valuable source of documentation for ExtJS comes from Sencha Docs. If you want to have more information about Ext.XTemplate, you should look it up there. You will find... -
15 Dec 2011 9:14 AM
Jump to post Thread: Promise-based event model? by plalx
- Replies
- 1
- Views
- 725
Hi,
To reduce components coupling into my applications (ExtJS 3.x) , my components are only fireing events which are handled afterwards by the application or other components. This works well, but... -
9 Nov 2011 6:35 AM
Jump to post Thread: RegExp: Partial matches by plalx
- Replies
- 8
- Views
- 2,243
I see your point, it's not really directly related to any sencha features, that's why I posted in the community discussion forum.
Now if you think it shouldn't be here, you are free to delete the... -
9 Nov 2011 6:24 AM
- Replies
- 10
- Views
- 1,923
Hi, I am not sure of what I will say, because I have never used ExtJS with existing HTML element, and normally it is not really the path you want to go, but if that's what you need to do, I think it...
-
9 Nov 2011 6:05 AM
Jump to post Thread: RegExp: Partial matches by plalx
- Replies
- 8
- Views
- 2,243
Q&A I guess?
-
8 Nov 2011 11:43 AM
- Replies
- 10
- Views
- 1,923
Sorry, I read this too quickly... I think the way you want to organize this is like that:
//Pseudo-code
AccordionPanel = {
applyTo: 'accordionContainerDiv',
layout: 'accordion',
... -
8 Nov 2011 11:39 AM
Jump to post Thread: RegExp: Partial matches by plalx
- Replies
- 8
- Views
- 2,243
Sorry... Could you move it to the right forum? Thanks
-
8 Nov 2011 9:26 AM
- Replies
- 10
- Views
- 1,923
Did you specified collapsible: true ?
http://docs.sencha.com/ext-js/3-4/#!/api/Ext.Panel-cfg-collapsible -
8 Nov 2011 9:17 AM
Jump to post Thread: [FIXED] Unable to "Go Advanced" by plalx
- Replies
- 4
- Views
- 1,525
It's been a while that I reported this issue. You can also do PATHS = '' in firebug or any browser console... it will work after this.
-
8 Nov 2011 7:57 AM
- Replies
- 4
- Views
- 932
What would be the use case for that?
-
8 Nov 2011 7:55 AM
- Replies
- 2
- Views
- 867
You just have to parse the JSON and once you have a native JS object, you use a for in loop.
for (var key in obj) { console.log(key); } -
8 Nov 2011 5:12 AM
Jump to post Thread: RegExp: Partial matches by plalx
- Replies
- 8
- Views
- 2,243
Hi,
No, there would not be any ways of having a list of values. Partial regex matching can be used to enforce specific masks on input. For example, I could write a regex that validates postal... -
7 Nov 2011 1:59 PM
Jump to post Thread: RegExp: Partial matches by plalx
- Replies
- 8
- Views
- 2,243
Is there anyone that knows a library in JS that supports partial RegExp matching. For example, where /allo/.test('all') would return true. That would allow doing dynamic input validation while the...
-
2 Nov 2011 5:36 AM
- Replies
- 10
- Views
- 1,923
Take a look at the applyTo and contentEl config options.
-
1 Nov 2011 6:44 AM
Jump to post Thread: custom javascript class by plalx
- Replies
- 1
- Views
- 387
You constructor is not handling the config.
Samples.Form = function (config) {
this.counter = 0;
Samples.Form.superclass.constructor.call(this, config);
};
... -
31 Oct 2011 10:46 AM
Jump to post Thread: update title on the Tab at runtime by plalx
- Replies
- 2
- Views
- 575
Hi,
If the tab itself is a panel it's very easy, you can use the panel.setTitle() method. If it's not a panel, there might be a better way, but I gave you an example on how you could do it.
... -
31 Oct 2011 10:25 AM
Jump to post Thread: Calculate day of week by plalx
- Replies
- 4
- Views
- 537
Hi,
I'm not sure that I understood what you need and I doubt I did because it would have been too simple... but are you looking for this? http://www.w3schools.com/jsref/jsref_getday.asp -
27 Oct 2011 6:52 AM
Jump to post Thread: Docs Performance by plalx
- Replies
- 3
- Views
- 1,121
Thanks for pointing this out. I just assumed it was using the lastest version... I went a bit too quick on this one!
I have tried to replace ext-all.js with the new version but that leads to some... -
26 Oct 2011 12:31 PM
Jump to post Thread: Neptune Theme by plalx
- Replies
- 44
- Views
- 26,262
I am not disapointed with the new theme. It's modern and minimalistic and way better than the current theme, but I must agree that the first Neptune preview looked awesome and maybe a bit more...
-
26 Oct 2011 12:18 PM
Jump to post Thread: Docs Performance by plalx
- Replies
- 3
- Views
- 1,121
*** This thread should be deleted. I assumed the last shipped developer preview was using 4.1 for it's Docs app while it wasn't the case and the docs was still running on 4.0.7. ***
Hi,
I... -
11 Oct 2011 11:22 AM
- Replies
- 4
- Views
- 1,190
I wrote an override for this a while ago. Not sure if it still works in 3.4, but it should.
http://www.sencha.com/forum/showthread.php?109047-Grid-grouping-and-sorting&p=515917#post515917 -
5 Oct 2011 10:02 AM
Jump to post Thread: JsonWriter issue by plalx
- Replies
- 1
- Views
- 403
Not sure if I understood your problem correctly, but you need to know that ajax requests are asynchronous... you need to use a callback to make sure that you received the data before proceeding.
... -
5 Oct 2011 9:57 AM
Jump to post Thread: Custom Logo and click handlers by plalx
- Replies
- 2
- Views
- 643
You could split your image, having pieces in the same container and use the delegate option when registering a click handler on the container to target each of your regions. This way you have one...
-
5 Oct 2011 9:52 AM
- Replies
- 4
- Views
- 1,545
tip: You can juste use Ext.Ajax.request directly instead of creating a connection yourself.
Results 1 to 25 of 120
