Search Type: Posts; User: friend
Search: Search took 0.03 seconds.
-
Yesterday 5:05 AM
- Replies
- 8
- Views
- 125
As far as I know (and I could very well be wrong), a browser's ability to remember form data is separate and distinct from Cookies. Firefox in particular maintains a SQLLite database instance for...
-
23 May 2013 11:48 AM
- Replies
- 8
- Views
- 125
They're using cookies. Look at the cookies for sencha.com and you'll see bb_userid and bb_password, noting that they encrypt the password.
-
23 May 2013 9:40 AM
- Replies
- 5
- Views
- 139
Does you page not use/include any CSS files? I typically load a 'reset.css' which initializes everything to known/good values.
Also, what ExtJs files are you loading? -
23 May 2013 9:29 AM
- Replies
- 8
- Views
- 125
I don't think that the native browser support for remembering form data is scriptable or controllable by applications. It can typically only be enabled/disabled by a user.
-
23 May 2013 9:01 AM
- Replies
- 5
- Views
- 139
I'd need to see the complete contents of the page in question, as well as the contents of any CSS files being loaded.
-
23 May 2013 8:56 AM
- Replies
- 8
- Views
- 125
I usually add a checkbox below the login/password fields, where the checkbox is labeled 'Remember login'. When the user clicks the Login button, I use Ext.util.Cookies.set('lastLogin',...
-
23 May 2013 6:39 AM
Jump to post Thread: Editing XML by friend
- Replies
- 2
- Views
- 68
I completely forgot about Ext.DomQuery. From the docs, "It will work on HTML and XML documents (if a content node is passed in).".
-
23 May 2013 5:53 AM
Jump to post Thread: How to refresh a pie graph? by friend
- Replies
- 1
- Views
- 69
Reloading the chart's store should work, where you can optionally pass params to the store as well:
chart.store.load({
params: {
someParam: 'someValue'
}
}); -
22 May 2013 11:41 AM
- Replies
- 1
- Views
- 63
Can you please post a code sample showing your Window configuration?
-
22 May 2013 9:09 AM
- Replies
- 1
- Views
- 55
Use a renderer on the desired grid column and you can do/return anything you like.
-
22 May 2013 8:58 AM
Jump to post Thread: Date and time format by friend
- Replies
- 3
- Views
- 141
I think Dev@QLP is on the right track. Your model should look something like this:
Ext.define('YourApp.model.User', {
extend: 'Ext.data.Model',
fields: [
{name: 'userName', type:... -
22 May 2013 8:51 AM
- Replies
- 5
- Views
- 139
I think you're misunderstanding how CSS work in regards to your <div>. The 100% height setting on the <div> tells it to grow vertically to fit the height of its content. If you set a fixed height...
-
22 May 2013 8:36 AM
- Replies
- 4
- Views
- 101
Oops, sorry, I misunderstood your question.
Try this:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> -
22 May 2013 6:21 AM
- Replies
- 1
- Views
- 46
See this thread.
-
22 May 2013 6:19 AM
Jump to post Thread: How to Close viewport by friend
- Replies
- 4
- Views
- 141
I prefer a single-page solution also, but I was using Java/Spring MVC/Spring Security on the backend of a recent app. You couldn't preload any data stores since the user wasn't yet authenticated...
-
22 May 2013 4:43 AM
- Replies
- 4
- Views
- 134
When a server-side failure occurs, the operation object can only capture the HTTP status information about the failure. In other words, it's a server failure, not a 'logical' failure that you are...
-
22 May 2013 4:40 AM
- Replies
- 2
- Views
- 52
You can share a single store amoung several comboboxes, but any filtering or store-level modifications you make will affect all of the comboboxes.
If you want to perform different filtering and... -
22 May 2013 4:25 AM
- Replies
- 5
- Views
- 90
On the server/Java side, I created a TreeNode class to model tree nodes:
public class TreeNode
{
public static final boolean EXPANDED = true;
public static final boolean COLLAPSED =... -
21 May 2013 9:14 AM
Jump to post Thread: How to Close viewport by friend
- Replies
- 4
- Views
- 141
A much simpler approach is to use a separate page for Login. This page includes minimal ExtJs classes and performs a full-page submit; only if the user authenticates successfully do you forward...
-
21 May 2013 9:09 AM
Jump to post Thread: Editing XML by friend
- Replies
- 2
- Views
- 68
I don't think ExtJs offers an API for XML manipulation, other than XML readers/writers for use with a Data Store.
However, all modern browsers natively support XML parsing via javascript. -
21 May 2013 9:00 AM
- Replies
- 2
- Views
- 73
The first step is to get a reference to the target Tab panel. Is there's only one, do this:
var tabPanel = Ext.ComponentQuery.query('tabpanel')[0];
Otherwise, you can assign an itemId... -
21 May 2013 8:54 AM
- Replies
- 4
- Views
- 134
operation.getError() will typically return a JSON object like so:
{
status: 500,
statusText: 'Internal Server Error'
} -
21 May 2013 8:42 AM
- Replies
- 4
- Views
- 102
I don't see anything obviously wrong with your store config. The only slight oddity I see is that you're setting some of the default params to 'undefined', where I assume you're just trying to...
-
21 May 2013 6:25 AM
Jump to post Thread: Video youtube by friend
- Replies
- 2
- Views
- 118
The best way to do what you want is most probably via HTML 5's native support for video:
http://www.w3schools.com/html/html5_video.asp -
21 May 2013 6:08 AM
- Replies
- 1
- Views
- 40
Visit the Drag and Drop samples. There's lots of information in the source files to get you started.
There are also several examples in the examples/dd sub-folder of your ExtJs installation.
Results 1 to 25 of 120
