Search Results

Type: Posts; User: Manni

Page 1 of 2 1 2
Search took 0.01 seconds.
  1. Hi Vadym,

    thank you very much. Your solutions works great.

    I am sure this will also help others.

    Thanks again,
    Manni
  2. Hello all,

    In the GridPanel with Remote Filtering example (https://examples2.ext.net/#/GridPanel/Plugins/GridFilters_Remote/), I noticed that the string filter is applied as soon as there is a...
  3. Thanks, Daniil.

    I will give it a try.
  4. Hi,

    I would like to show the current slider value permanently above the thumb, not just when moving the thumb. I am using the TipText properties and have already set UseTips="true". The tool tip...
  5. Thanks Daniil. Is it already available via SVN? The log shows the latest revision 4586 as of 11/27/12.
  6. @Baidaly: Thank you very much for your suggestion. Sorry for the late response.

    After some more digging, I came across the LoadContent method which solved the problem.



    protected void...
  7. Hi Aurelio,

    Thank you very much for your excellent example!

    My apologies for not getting back to you sooner.

    Manni
  8. I was able to get it to work with the SetValue called in Page_LoadComplete. My initial attempts with SelectedItem.Value did not work.
  9. JWF,
    Thanks for the explanation and your suggestion. Using a local variable works fine.
    Thanks again.
    Manni
  10. When I debug Page_LoadComplete(...) using



    cbState.Select(2);
    object provinceID = 9;
    cbState.Select(provinceID);


    neither approach sets cbState.SelectedItem.Value or...
  11. Hmm, then it might have something to do with the way I initially set the value of the combobox: I set it in the code-behind after the page is loaded (in this example it is static and set for Ohio,...
  12. Hi JWF,

    I did not see your post until after I submitted my update, so here is my response:

    Thanks for pointing out the need to define the ID field in the model, as well as the example. Your...
  13. Update:
    The code below works fine after the selection has changed. After the combobox is initially populated, SelectedItem.Value is set to SelectedItem.Text. Only after selecting another entry,...
  14. I am unable to retrieve the value of the selected item of a combo box in code-behind. Both, text and value show the content of the DisplayField (e.g. this.cbState.SelectedItem.Text and...
  15. Thanks Geoffrey, that works!
  16. What is the best way to set a textfield from a static DirectMethod? I understand that the static Direct Method does not have access to the Page controls.
  17. I finally figured it out.


    protected void Page_LoadComplete(object sender, EventArgs e)
    {
    if (!Ext.Net.X.IsAjaxRequest)
    {
    this.cbState.SetValue(StateProvinceID);
    }
    }
  18. Hi Geoffrey,

    I wrapped setting the value as you suggested, and tried both option 1 and option 2, to no avail.



    protected void Page_LoadComplete(object sender, EventArgs e)
    {
    if...
  19. Thanks Daniil. I will have to revisit this issue and will let you know.
  20. I have a combo box populated with the U.S. States via a store and would like to show a specific state at the time a page loads. What is the best way to set it via code-behind? I believe the correct...
  21. Hi Daniil,
    any update on this?
    Manni
  22. How do I open a window from the a grid panel with the content based on the selected row?

    I can open a window from the grid panel when I select a row. However, whenever I change the URL in...
  23. I would like to search a grid similar to the live search grid example here: http://dev.sencha.com/deploy/ext-4.1.0-gpl/examples/grid/live-search-grid.html.

    Can this be implemented with Ext.NET as...
  24. Following up on code-behind for grouping: I am trying to close the grouping via



    Grouping1.CollapseAll()


    in the page load event. Is this too earlier? Or is this the wrong method?

    I am...
  25. That works.

    Thank you very much, Daniil!
Results 1 to 25 of 38
Page 1 of 2 1 2