Search Type: Posts; User: darshanags
Search: Search took 0.02 seconds.
-
8 Oct 2011 4:42 AM
- Replies
- 33
- Views
- 6,967
rashid.jahangir
Your trying to mix Ext 2.x code with Ext 4.x code as most of the code you pasted is from ExtJS 4. Can you create a new thread in Ext JS 4 Discussion section please... -
20 Feb 2009 2:48 AM
- Replies
- 33
- Views
- 6,967
thanks condor. will try these and post back with my findings.
-
20 Feb 2009 1:54 AM
Jump to post Thread: HTML Editor - empty content by darshanags
- Replies
- 5
- Views
- 1,987
try....
function submit(){
var tresc = Ext.getCmp('tresc');
tresc.syncValue();
var finalValue=tresc.getValue();
/**any other code here which might process the finalValue**/
} -
20 Feb 2009 1:06 AM
- Replies
- 33
- Views
- 6,967
hello @Condor
A while back i was trying to use the same store used in my dataview with a grid. Actually a grouping grid to be exact. I had changed the datastore structure to read subcategories... -
23 Jan 2009 3:56 AM
- Replies
- 6
- Views
- 1,190
why not add the tabs after checking a condition? you can make a ajax call to the backend and get the value for the condition that you are checking.
-
23 Jan 2009 2:13 AM
- Replies
- 33
- Views
- 6,967
thanks @Condor for your patience (mostly i think:D) and your guidance. This works just the way i want it to. =D>~o)
-
23 Jan 2009 1:08 AM
- Replies
- 33
- Views
- 6,967
Hi @Condor
okay....tried that with a few modifications......and same as before, FF- no change, IE7- Number Expected error.
new code:
viewStore.load({
callback:function(r,o,s){ ... -
22 Jan 2009 11:01 PM
- Replies
- 33
- Views
- 6,967
okay...did that....in FF nothing changes. IE7 gives an error "number expected":-/
here the code bit:
viewStore.load({
callback:function(r,o,s){
if(s){... -
22 Jan 2009 9:43 PM
- Replies
- 33
- Views
- 6,967
hi @Condor
I tried the code that you posted last but it seems that the each loop on the store does not even start, i set breakpoints at multiple locations inside the each loop but it seems like... -
22 Jan 2009 6:06 AM
- Replies
- 33
- Views
- 6,967
Hi @Condor
I tried the code that you posted earlier, actually tried out a few variations but it did not sort the dataview. I tried the following:
> sorted the inner items before the store was... -
21 Jan 2009 11:51 PM
- Replies
- 33
- Views
- 6,967
got it, thanks @Condor. I will post back with the results.:)
-
21 Jan 2009 8:37 PM
Jump to post Thread: Firing Event on HTML Element by darshanags
- Replies
- 17
- Views
- 2,176
if you want to do something upon a click event on an element, you can use something like:
Ext.select('#htmlelementid').on('click',function(c,v){
alert(this.id);
});
you can also... -
21 Jan 2009 8:21 PM
- Replies
- 33
- Views
- 6,967
help? anyone?:-/
-
20 Jan 2009 8:56 AM
- Replies
- 33
- Views
- 6,967
sorry, when i said categories i didn't mean it literary. yes @Condor, I want to sort items inside each category, ie: the fields mapped inside the reader. (below in red...
-
20 Jan 2009 7:03 AM
- Replies
- 33
- Views
- 6,967
its been a while since my last post. i am trying to sort the the data read by the xmlreader but with no success.
I call the sort method on the store after it loads.
This works (the items are... -
24 Nov 2008 12:16 AM
- Replies
- 33
- Views
- 6,967
OK!!! WORKS!!!! I missed the mapping levels. Now it works just like i want it to.
thanks -
23 Nov 2008 11:27 PM
- Replies
- 33
- Views
- 6,967
Hi @Condor,
As i mentioned in my posted earlier. I used values.data.xxx to access the values inside the tpl, but then there's an error when i load the page which breaks the process.
FireBug:... -
23 Nov 2008 10:27 PM
- Replies
- 33
- Views
- 6,967
hello
@Condor, in my original code, i used a slightly modded code of the Ext example page code which uses Ext.DataView. The last code snippet worked like a charm but without the functionality... -
17 Nov 2008 3:37 AM
- Replies
- 33
- Views
- 6,967
oh! my bad. I tried to find it through the API search which didn't turn up any result.
Thanks again!
cheers! -
17 Nov 2008 3:20 AM
- Replies
- 33
- Views
- 6,967
Thanks @Condor=D>~o), this is just what i wanted:D. One question though:
I couldn't find convert:function(v,n) in the api, should this be in there? -
17 Nov 2008 1:57 AM
- Replies
- 33
- Views
- 6,967
Thanks @Condor!
The first option got the XTemplate to iterate through the <item>s. Now I get something like this:
http://extjs.com/forum/attachment.php?attachmentid=10529&stc=1&d=1226915596
... -
17 Nov 2008 1:26 AM
- Replies
- 33
- Views
- 6,967
Hello
My requirement is to create a thumbnail view /w short description for each item(like Ext examples page) from XML data. I did a mock up of the initial code, but now I'm stuck with what i... -
6 Nov 2008 4:31 AM
- Replies
- 1
- Views
- 1,018
Hello
I have a formpanel with a table layout, the form items are added dynamically. But the items do not show up in the formpanel.
formpanel code:
var addgen = new Ext.FormPanel({... -
5 Nov 2008 1:18 AM
Jump to post Thread: Slider thumb not syncing by darshanags
- Replies
- 11
- Views
- 3,562
i tried both, numrics and string but the slider thumb stays at 0. when i set the value in the firebug console, it works fine the thumb moves to the correct position.
-
5 Nov 2008 12:57 AM
Jump to post Thread: Creating Ext.form.Label? by darshanags
- Replies
- 1
- Views
- 4,198
Add this item to your FormPanel items
{
xtype: 'label',
name: 'label_name',
id: 'label_id',...
Results 1 to 25 of 37
