Tagged Questions
0
votes
2answers
35 views
How to get `:after` to work in extjs iconCls?
My css for a tree node icon is the following:
.icon {
background: url(http://dummyimage.com/100x100/ccc/fff);
width: 100px;
height: 100px;
position: relative;
}
.icon:after {
...
0
votes
0answers
47 views
Extjs Disabled Panel's Opacity
I have a popup window which on creation disables the whole panel behind it. On the panel I have used disabledCls: 'my-disabled-panel' and in the css file
.my-disabled-panel .x-mask{
opacity: 0 ...
0
votes
2answers
181 views
Fix the width and height of the table td
In my project, I am trying to fix the width and height of td's by doing the following:
td{
max-width:100px;
max-height:100px;
width:100px;
height:100px;
overflow:hidden;
...
1
vote
1answer
407 views
Show image instead of checked state of checkbox in extjs
How to show a image (ticked image) instead of the default tick of checkbox when the user checks it?
I tried using checkedCls config, in which the image is coming but backside of the checkbox.
...
0
votes
1answer
267 views
How to align button on bottom when used with file uploader and label aligned on top?
I am using filefield for file uploading and i am placing an upload button besides it.
when placing long labels its layput is breaking and upload button is placed at top.
I want my label aligned to ...
0
votes
1answer
111 views
ExtJS: Where does the container default style come from?
This is how I specify my "blank" container in JavaScript:
Ext.create('Ext.container.Container');
The following screenshot shows the style attribute my container has by default (the div in ...
0
votes
1answer
399 views
css,sass gradient color as the base color for extjs theming
I am implementing an extjs theme based on the tutorial:
http://docs.sencha.com/ext-js/4-1/#!/guide/theming
I have set everything up and works as expected.
But I want to have a gradient color as the ...
4
votes
2answers
886 views
How can I keep ExtJS 4.1.1 from messing up the Twitter Bootstrap 2.2.1 layout?
I really don't like ExtJS but I'm forced to use it. I want to use Twitter Bootstrap 2.2.1 for the main layout and ExtJS for grids and JS (policy).
I have an awesome looking Bootstrap design going ...
1
vote
1answer
301 views
Extjs4 multigrouping header value css
I am using the Extjs4 multigrouping plugin from here.
I have used it successfully, however i want to show the summary of the totals of each column within the group header itself . how do i set up the ...
0
votes
1answer
1k views
ExtJs - How to style textarea text?
I got a textarea in ExtJs 4.1 and want to modify the font family and size.
style : 'font-family: courier new, font-size: 8px'
style : {
'fontFamily' : 'courier new',
...
0
votes
1answer
59 views
CSS Inheritence not applying style
So I've got the following DOM structure and I'm focusing on the highlighted classes.
I want to change the color of the text "Contributing to Aggregate" white. I placed a 'marker' CSS class (called ...
0
votes
0answers
1k views
Extjs alignment of icon next to textfield control
I want the icon on right side of textfield , What i am trying is i wrap the textbox and that wrapper has relative position and then to this wrap i append a div with absolute position and then set the ...
1
vote
2answers
332 views
Text Sprite styling
Is there some way to define a text sprite with some more style options then just size and font as shown in the example?
{
type: "text",
text: "Hello, Sprite!",
fill: "green",
font: ...
0
votes
1answer
377 views
Change fieldCls at runtime
I am trying to change the css of a text field at runtime, using ExtJs 4.1.
I have set the initial css using fieldCls: '' , which works fine.
However, using addCls and removeCls have nothing to do ...
0
votes
1answer
45 views
Chaging default theme, and adding styles to form componants
I have few questions on styles (Themes). Presently i get a blue colored theme in all my window and panels. I want to change this to Pink. How can i do that ?
I read about swapStyleSheet( String id, ...
1
vote
0answers
413 views
Adding custom theme - scss
i am getting this error;
Syntax error: File to import not found or unreadable: ext4/default/all.
Load paths:
C:/xampp/htdocs/proj/app/resources/sass
...
0
votes
1answer
54 views
Adding Custom Theme for the application
I am experimenting on themes. For this i have downloaded and installed ruby.
I am clueless as in how to have a different css file to have my own theme for the application.
I think i have make ...
0
votes
1answer
4k views
Style a button in EXTJS
I have a button. and i need to align it to the right, make the font size increase and bold etc. When i googled it says i should use CSS.
How can i use CSS, to style the button that i added ?
My ...
0
votes
2answers
488 views
ExtJS 4 adding a loading icon
I'm using ExtJS 4.1 and it's a lot faster but yet sometimes loading a view may take a while so I want to show some kind of Loading image which will tell the user that he should wait. I suspect that ...
0
votes
2answers
581 views
How to rotate triangle collapse icon in Ext Js panel?
Is there a way to rotate the collapse icon in a panel ( http://i.imgur.com/2ZvKd.png )? Since the direction is a bit misleading as the panel collapses in a direction opposite to that what the icon ...