Search Results

Type: Posts; User: adelaney

Page 1 of 7 1 2 3 4
Search took 0.02 seconds.
  1. Just an extra bit of info - I don't think I actually have the store. If I inspect this: Me.GetCmp(Of Store)("storeEmail"), I do see an object, but even if I put in a fake ID (e.g. "store123") that I...
  2. It is currently within a Ajax.BeginForm block.
  3. I have a controller which is using the controller extensions and as such, I am using the GetCmp method for a store. After that I am trying to set the store's datasource from a list of a model:


    ...
  4. Ok. I found the answer myself. For me, adding this to the combo did the trick:


    .TriggerAction(TriggerAction.All) _
    .QueryCaching(False) _
    .QueryMode(DataLoadMode.Remote) _
  5. Well, I was almost there. My combo loads the data perfectly, but (there's always a but) the combo is in a popup window that is intended to look up a contact based on the ReinsurerID stored in a...
  6. Thank you! That example was perfect. Now, this may be a dumb question, so I apologize in advance if it is. However, in theory, when should you use a direct event/method and when should you use a...
  7. I have a combobox with which I am trying to load data via a DirectMethod. I have been reviewing this sample: https://examples2.ext.net/#/Form/ComboBox/Ajax_Linked_Combos/. However, I think there...
  8. I have a grid panel which has a complex type in the store (Contact). I can see the data if I inspect the store. For my ColumnModel, I want to display the contact's name. I tried ...
  9. Danill,

    No, this is not a request, but instead is an update POST. It is called via the store.sync() method and fires the update proxy API that I have configured. The JSON I pulled out was...
  10. An unfortunate issue I did not see coming would be some trouble with the length of JSON rendered from the tree. As a result, I have been trying a few things. One thing that seems to have some...
  11. Great! I can do that. So, back to the original question. How do I set up my view to send my data back to the controller? I tried this:

    .Buttons(Html.X.Button.Text("Save...
  12. Um. Ok. However, I am not asking you to implement new functionality. You can if you would like. That seems nice, considering it is a grid. However, what I am asking is HOW, using your UI tool, do...
  13. I am so sorry. I forgot to mention that this is a treeGrid and not a "normal" grid. I tried the solution above, but it errored on "parameter mismatch." I have to assume that a TreeGrid does...
  14. I have a grid in an MVC application where I want to perform batch updates on a button click. The grid has the cell editing plugin in place. I have set up the button to connect to a DirectMethod,...
  15. I have a grid with is using the cell editing plug in. For one of the columns, I need to provide data to the store based on a value in my grid row. For example, if the grid were a list of employees,...
  16. I am using MVC/Razor. I am using a Radio group with a custom config:

    Html.X.RadioGroup() _
    .AllowBlank(False) _
    .AutoFitErrors(False) _
    ...
  17. It appears that with all the database trouble with the forum over the past couple of days that you may have lost my last post. Here is the sample code again.


    View

    @{
    ViewBag.Title =...
  18. Upon further inspection, it appears that the item is "deselected" in its data, but visually it is. Here is a code sample:

    View:

    @{
    ViewBag.Title = "Edit With JavaScript";
    Layout =...
  19. I posted a question on a TreeGrid to edit at the client - http://forums.ext.net/showthread.php?21085-Javascript-Updating-a-TreeGrid

    I have the exact same scenario, but need to do it for a...
  20. Oh boy. That's a lot of code. I am not sure you are going to like that. One thing that I see that might be an easy test is that my button is in the header of the grid, and that button opens a...
  21. This:


    /*********************************************************
    Document Reinsurer Grid - Update Tracking Dates
    setDates(storeColumnName as string)...
  22. That works!

    One final thing. After the code executes, all my selections are cleared. I would prefer that not to happen. Is there a way to do that?
  23. As an update, I did get this to work:

    App.reinsurerTree.selModel.selected.getByKey(node.id) However, I don't know if this is the best/correct method to do this. If possible, please let me know if...
  24. This is great! However, I been handed a wrinkle. I had to add the checkbox selection model and the items to update should only be the rows that are selected. I tried
    node.data.selected and ...
  25. I have a TreeGrid panel that is editable via the cell-editing plugin. However, I need to do "bulk" updates on the client via some button clicks. For one, I need to give the users the ability to set...
Results 1 to 25 of 172
Page 1 of 7 1 2 3 4