Search Results

Type: Posts; User: registrator

Page 1 of 8 1 2 3 4
Search took 0.02 seconds.
  1. I have a Grid panel generated for the property model:


    X.GridPanelFor(m => m.InvoiceItems, false, true, false)
    True means that the Store is generated for this grid.

    I cannot add a Store ID...
  2. I am loading data in a chart and I would like to have "Loading..." preloader until the data loads. I cannot find a way to do this.
    Can anyone help please?



    X.Chart()
    ...
  3. How can I set all the text in all the cells of the grid to be a specific color?

    Thank you
  4. I am referring to the version 2 examples solution of yours where you have the following javascript:


    tab = App.ExampleTabs.add(new Ext.panel.Panel({
    loader : {
    ...
  5. Hi

    Is there a way to have something like:


    X.Container().Layout(LayoutType.HBox).Items(
    // if model.TYPE == 1 then
    ...
  6. I haven't worked on my project for a while and yesterday I have updated the library to 3.2.1 and a number of errors popped up.
    Methods and properties missing in the new version.
    Is there a document...
  7. Thank you. First solution worked.
  8. How can you make a grid panel read only if columns have editors?

    X.GridPanelFor(m => m.Items, false, true, false)
    Nothing I found on the forum worked for me
  9. Thank you Daniil.
  10. Searching through the forum I found some code and came up with this:


    form.cascade(function (f) {
    if (f.is('field')) {
    f.setReadOnly(true);
    }
    ...
  11. Great function. Thank you.
    However, when I use it like this


    form.cascade(function (f) {
    f.setReadOnly(true);
    });

    I get
    I guess some components do not support this...
  12. Hi Daniil

    Thank you. I have created a client side handler to test that can do this like this:


    form.items.each(function (f) {
    f.readOnly = true;
    });

    The problem i have is that...
  13. I have a form spread across multiple tabs.
    In the MVC controller method I am checking for certain condition and if true I would like to make all the controls in the form ReadOnly setting this on...
  14. I have a window defined as

    @( X.Window().ID("CustReceiptWindow")
    .BodyStyle("background-color:transparent;")
    .BodyCls("my-header")
    .Layout(LayoutType.Fit)
    ...
  15. Yes, you are right. I'm sorry. I'll give it a try like this.

    Thank you
  16. I have changed it to this:


    ar grid = App.GridPanelCR;
    var record = grid.getSelectionModel().getSelection()[0];
    var netvalue = record.get("NET");
    ...
  17. Hi Daniil

    I can't do that. This is what I get:
  18. Hi Daniil

    I have tried with this function and I get stopEditing is not a function!


    var grid = App.GridPanelCR;
    var record = grid.getSelectionModel().getSelection()[0];
    ...
  19. Fantastic! Thank you!
  20. How can I select the first item in the combo box after the combos store loads the list values?
    The following does not seem to work:


    X.ComboBoxFor(m => m.BANK_CODE).FieldLabel("Account...
  21. On button click I am entering a value in the grid cell. When this is done I would like to move the focus to the next row, same column, cell so I can do another button click and enter another...
  22. I would like to add a numeric value to the confirmation message.
    How is this achievable please?

    something like


    de.Click.Confirmation.Message = "There is a balance of ...
  23. How can this be done client side? Creating a handler on the column listener?

    Thank you
  24. Thank you Daniil

    The only thing about this is that the buttons are "flat" until you hover over them.
    Is there a way to change their style to look like when mouse over?

    Thank you
  25. Is there a way to place a group of buttons in the .Buttons() collection aligned to the left and another group to the right?
    Or maybe putting a spacer between them so the right ones are pushed to the...
Results 1 to 25 of 197
Page 1 of 8 1 2 3 4