Search Type: Posts; User: friend

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. 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...
  2. 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.
  3. 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?
  4. 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.
  5. I'd need to see the complete contents of the page in question, as well as the contents of any CSS files being loaded.
  6. 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',...
  7. 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).".
  8. 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'
    }
    });
  9. Can you please post a code sample showing your Window configuration?
  10. Use a renderer on the desired grid column and you can do/return anything you like.
  11. 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:...
  12. 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...
  13. Oops, sorry, I misunderstood your question.

    Try this:



    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  14. See this thread.
  15. 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...
  16. 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...
  17. 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...
  18. 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 =...
  19. 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...
  20. 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. 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...
  22. operation.getError() will typically return a JSON object like so:



    {
    status: 500,
    statusText: 'Internal Server Error'
    }
  23. 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...
  24. 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
  25. 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
Page 1 of 5 1 2 3 4