Search Type: Posts; User: parth.suthar
Search: Search took 0.02 seconds.
-
16 Nov 2011 2:29 AM
- Replies
- 1
- Views
- 1,551
I haven't found onOrientationChange event in Container class.
So,If i want to change some internal property or any component layout on orientation change event. How can i do it?
Thanks in advance... -
12 Oct 2011 1:16 AM
- Replies
- 1
- Views
- 618
Hi,
You can use browser's inbuilt xml parser. It's tutorial is given in w3schools. It is quite easy. But one would like tell you that using built parser you can not take advantage of sencha's... -
11 Oct 2011 10:59 PM
- Replies
- 2
- Views
- 625
Hi, Friend
Actually bug in your code is that, itemtag event handler function is called using 3 arguments.You can refer it in api documentation. So handler is called using syntax... -
11 Oct 2011 10:41 PM
Jump to post Thread: Toolbar color by parth.suthar
- Replies
- 2
- Views
- 1,606
You can change color and any css property of toolbar using style config option.
var toolbar = new Ext.Toolbar({
style:{
background:'none',
... -
11 Oct 2011 3:37 AM
Jump to post Thread: List selected issue by parth.suthar
- Replies
- 3
- Views
- 643
Hi,
There is no clearSelection type config option avalable or anything that automatically deselect item after some time. You have to deselect item manually. I have demo code for that.
... -
11 Oct 2011 1:48 AM
- Replies
- 0
- Views
- 368
Whenever i am changing dock of toolbar, one div is not removed. That div is creating problems.
Let we one toolbar
var toolbar = new Iconbar({
bgColor:'red',
items:[ -
11 Oct 2011 12:47 AM
- Replies
- 3
- Views
- 1,456
Hi,
In scripttag proxy you need to create 1 callback function. Refer below example,that might can help your problem.
Here, I have created 1 model and store,use scripttag proxy.
Code... -
10 Oct 2011 12:52 AM
- Replies
- 1
- Views
- 1,687
Hi,Friend
You can use toolbar to show text in middle via title property. Add can add button using items config options.
And in Panel,
spacer works like this,
--... -
9 Oct 2011 10:58 PM
Jump to post Thread: text-align on buttons by parth.suthar
- Replies
- 4
- Views
- 994
Hi,
You can secify text-align using cls property of button. You have specify home-button already. Just add another css
like
.home-button span{
text-align:left;
}
or
.home-button... -
7 Oct 2011 7:11 AM
- Replies
- 2
- Views
- 789
this.box=new Ext.Container({ modal: true,
floating: true,
hideOnMaskTap: false,
width: 200,
padding: 15,
cls: 'installme-bubble horizontal-box',
html: html,... -
7 Oct 2011 7:08 AM
- Replies
- 2
- Views
- 789
this.box=new Ext.Container({ modal: true, floating: true, hideOnMaskTap: false, width: 200, padding: 15, cls: 'installme-bubble horizontal-box', html: html, style:{ top:...
-
7 Oct 2011 6:55 AM
- Replies
- 3
- Views
- 1,042
Thanks for replying "bassjobsen".
But toolbar.setWidth() and toolbar.setHeight() is not working. But panel.setWidth() and panel.setHeight() is working. -
7 Oct 2011 4:46 AM
- Replies
- 3
- Views
- 1,042
Happily i got the solution, we can call doComponentLayout() method instead of doLayout(). And it also safe side to call doComponentLayout() method as stated in api. documentation.
-
7 Oct 2011 4:11 AM
- Replies
- 0
- Views
- 555
Hi Friend,
I got one problem, that I have a toolbar added as dockedItem in panel. But when i changed the dock property of toolbar,it is not reflected in screen instantaneously but when i resize the... -
7 Oct 2011 3:26 AM
- Replies
- 3
- Views
- 1,042
Hi Friend,
I got one problem, that I have a toolbar added as dockedItem in panel. But when i changed the dock property of toolbar,it is not reflected in screen instantaneously but when i resize the... -
7 Oct 2011 1:45 AM
- Replies
- 1
- Views
- 1,131
I have found the way to handle click event in Button class.
Just add handler config like
handler:function(){//do some login}
will handle click event.
But still i donot know how to add click... -
6 Oct 2011 11:15 PM
- Replies
- 1
- Views
- 1,131
Hello Friends,
I want to add click listener to Toolbar's items. My code is
var toolbar = new Ext.Toolbar({
layout:{type:'hbox',align:'top'},
width:'70px',
dock:'top',... -
5 Oct 2011 2:03 AM
- Replies
- 0
- Views
- 317
I have a toolbar with more than 1 items. By default every items shows horizontally. But , how to show it vertically. I used layout:'vbox' config,but in api it states that it is not supported in...
-
4 Oct 2011 11:32 PM
- Replies
- 0
- Views
- 773
Want to change the dock position of toolbar, that is added to dockedItems of panel. I am using setDocked() method of toolbar and calling doComponentLayout() method. Toolbar is also docked but it's...
Results 1 to 19 of 19
