Search Type: Posts; User: tavinashb
Search: Search took 0.02 seconds.
-
1 Jun 2012 12:23 AM
- Replies
- 2
- Views
- 809
I am sending request to cross domain using JsonP proxy and response to this request is in xml.
But, after request completion, i am getting following error in firebug -
"unterminated regular... -
30 May 2012 10:09 PM
- Replies
- 3
- Views
- 1,478
I think request is not cross domain as i am sending it to same domain "example.com". I want to send the requests to subdomain of "example.com" i.e "host1.example.com" and "host2.example.com"
correct... -
30 May 2012 6:22 AM
- Replies
- 3
- Views
- 1,478
I want to send Ajax requests to "host1.example.com" and "host2.example.com" from same Ext application. Also i want to use above urls for store loading.
How can i implement such a functionality in... -
6 Jan 2012 6:36 AM
- Replies
- 3
- Views
- 1,160
I have tried to create example with reference of
http://docs.sencha.com/ext-js/4-0/#!...organizer.html
I'm also getting following error
this.el is null
this.callParent([this.el.dom,... -
3 Jan 2012 5:39 AM
- Replies
- 16
- Views
- 1,613
For number input use "Number Field" instead of "Text Field". You can apply validations to number field by using it's properties.
You will find different number field proprieties on -
... -
30 Dec 2011 9:21 PM
- Replies
- 12
- Views
- 2,761
In this case "this" is referring to form not to button as we are using "scope: this".
-
30 Dec 2011 4:35 AM
- Replies
- 16
- Views
- 1,613
I have modified your code.
Try This,
Ext.Loader.setConfig({enabled: true});
Ext.Loader.setPath('Ext.ux', 'js/ux/');
Ext.require([
'Ext.grid.*', -
30 Dec 2011 4:03 AM
- Replies
- 16
- Views
- 1,613
Are you going to apply "id" property to "Send To" field?
If yes then -
listener:{
click:function(){ var emailArray= new Array(); for(var i=0; i<... -
30 Dec 2011 2:06 AM
- Replies
- 16
- Views
- 1,613
Hi,
Thanks for posting your code. In your code i didn't see how are you calling "Send Email" Form on click of "Send Email" button.
So, you can try like this
sendEmailForm.on('afterrender',... -
29 Dec 2011 9:56 AM
Jump to post Thread: Multiple email input validation by tavinashb
- Replies
- 2
- Views
- 1,010
yes, function is working correctly. There is no line no. of library is associated with this
-
29 Dec 2011 6:07 AM
- Replies
- 12
- Views
- 2,761
Try this,
buttons: [
{
text: 'Generate',
scope: this,
handler: function() {
var form = this.getForm(); -
29 Dec 2011 5:39 AM
- Replies
- 9
- Views
- 689
yes.....i think above method should work.
I have question - how can be your event is getting register 2 times?, If you are destroying component before creating new one.
I think your component is... -
29 Dec 2011 5:33 AM
- Replies
- 16
- Views
- 1,613
Can you post your JS code?
It will make me easier to understand how you are calling "Send Email" form.
or
you can try like this,
handler: function(){
textArea.setValue(emailAddress); -
29 Dec 2011 4:57 AM
- Replies
- 9
- Views
- 689
try to remove event with removeListener() method before destroying the component.
-
29 Dec 2011 4:52 AM
- Replies
- 16
- Views
- 1,613
It depends, how and when you want to set value in "Email Address" text area.
You can set it on click of "Send Email" button or on "render"/"afterrender" event of of "Send Email" form. -
29 Dec 2011 4:39 AM
- Replies
- 9
- Views
- 689
try with suspendEvents() method of each component;
-
29 Dec 2011 4:36 AM
- Replies
- 16
- Views
- 1,613
Try this
var emailAddress = new Array();
for(var i=0; i< store.getCount(); i++){
emailAddress.push(store.getAt(i).get('emailAddress'));
}
textArea.setValue(emailAddress); -
29 Dec 2011 4:23 AM
Jump to post Thread: Multiple email input validation by tavinashb
- Replies
- 2
- Views
- 1,010
Hi,
I am applying validation on text area on key change event for multiple email input.
For this i am using following custom vtype:
'multiemail' : function(v) {
var array =... -
20 Dec 2011 2:14 AM
- Replies
- 1
- Views
- 398
I am using Ext.ux.ComponentListView component in my application which is based on Ext JS version 3.x. Now, i am migrating my code in Ext JS 4. I want this component based on Ext JS 4, but i am not...
-
16 Dec 2011 6:50 AM
Jump to post Thread: Load Store with Xml Response by tavinashb
- Replies
- 4
- Views
- 728
For xml file, code works. But, when i use store.load({ params: params}); as i have mentioned in earlier post, code does not work.
-
16 Dec 2011 12:23 AM
Jump to post Thread: Load Store with Xml Response by tavinashb
- Replies
- 4
- Views
- 728
Yes, i am executing load() on store. Actually i am loading this from other ext component.
dataStore.load({
params:{
op: 9,
Id: selectedId,
showResponse:... -
15 Dec 2011 7:15 AM
- Replies
- 4
- Views
- 602
var index = store.findBy(function(record){
if(record.get('code') == Ext.getCmp('code').getValue()){
return true;
}
return false;
}); -
15 Dec 2011 7:06 AM
Jump to post Thread: Load Store with Xml Response by tavinashb
- Replies
- 4
- Views
- 728
Hi,
I am getting following response from server.
<Root>
<TotalRecords>3</TotalRecords>
<Response>
<Status>1</Status>
<Approval>0</Approval>
... -
7 Dec 2011 6:38 AM
- Replies
- 1
- Views
- 585
Hi,
I am getting response from server as
I want to create store and load only "Feature" node from xml response in store . Can you help?
Results 1 to 24 of 24
