Actually you can natively (not using Flash) copy text from JavaScript in Firefox, but the user should explicitly allow this. The setting is off by default.
Type: Posts; User: Skeleton
Actually you can natively (not using Flash) copy text from JavaScript in Firefox, but the user should explicitly allow this. The setting is off by default.
Any update on this?
AFAIK there is no built-in control in Ext for this (or similar) purpose. But with HTML and CSS there are tons of ways to build such a thing. The first thing comes to my mind is using <ul> and <li>...
Do you mean this:
var centerRegion = mainLayout.getRegion('east').getPanel('east-div2').getLayout().getRegion('center');
// Fires when a panel is activated.
centerRegion.on('panelactivated',...
I had the same problem when I have moved from 1.0 to 1.1. The trigger image was not showing when I click on it. I had figured out that my browser was using the cached trigger sprite image of version...
Is this the next Windows, "Windows 7"? Just kidding :)
Here is a code snippet from one of our project which listens for content panel removals on center region:
layout = new Ext.BorderLayout(document.body, {
...
...
});
centerRegion =...
Consolas (comes with MS Office 2007), Monaco (default[?] fixed-width font for Mac), Bitstream Vera Sans Mono fonts are my favourites.
Thanks Jack, that's something.
The up arrow icon (http://extjs.com/deploy/ext-1.0.1/docs/resources/inherited.gif) that shows a member is inherited from one of its super classes is a nice visual clue while using docs. It is there...
Really cool UI over there, I liked the tabs most. Congrats!
Ah thanks Brian, silly me :)
I want to add the following images to wiki page at http://extjs.com/learn/Ext_FAQ but I couldn't find a place to upload image files. Does it need any special permission?
...
I also had a similar experience with Firebug. In my case, the Firebug on my development image (VMware virtual machine) started not to show errors but the Firebug on my host machine succesfully shows...
I want my tree nodes to not expand when they are double clicked, is it possible?
I am using 1.0.1a
Try using UTF-8 for encoding because the forms use the encoding of their parent documents during data transmission. For this, you should use the following meta tag to specify your Content Type:
...
If you are on version 1.0.1a, you can use a similar object Ext.lib.Ajax
Do both of you use the same base libraries? YUI, Prototype, jQuery...?
If you are looking for a diff tool (for Windows), Araxis Merge deserves every penny you have spent. Check it out:
http://www.araxis.com/merge/index.html
Wow, I have thought that I was alone when I have come accross to this bug today, but thankfully I am not :) I hope this will be fixed soon. I have used the workaround that cchiriac mentioned for now.
Try this way:
Ext.MyDialog = function(){
var dlg, parent, config;
return {
showDialog: function(parent) {
if (!dlg) {
parent = Ext.Element.get(parent);
Recently I have implemented such a feature for our project. I am adding a new iframe to the document body with src attribute pointing to the download file using Ext.DomHelper. Sure this iframe is an...
This is the rule that I have used for icons in combo:
.x-combo-list-item {
background: url(/WebtopLite/img/ico-library.gif) no-repeat 1px 2px;
padding-left: 20px;
}
Here how it...
I have done a similar thing at work for a project. I couldn't see any built-in funcionality for this in the Ext library but it is a pretty simple thing and can be done wrting a few CSS rules. I will...