Search Results

Type: Posts; User: zfreeman

Page 1 of 2 1 2
Search took 0.01 seconds.
  1. Confirmation! After adding the above javascript the original code I had works and the icons can be replaced on the backend again. Thanks! Looking forward to version 3.3.
  2. Thanks Fabricio - I fixed it by removing the change in the code behind but it's definitely functionality I'd like to use in the future, so if it gets addressed I'd want to reimplement the...
  3. The code I previously posted will build in 3.2, however it will prevent a window from being displayed. I am assuming because the code breaks when it attempts to change the icon from the back-end.
    ...
  4. In code that worked with 2.X I would check for a specific value and then change the icon from BulletTick to BulletCross if the value I was checking was not at least a certain value. After converting...
  5. I changed the BoxLabel to FieldLabel and the same functionality works. The only difference is that the label is to the left of the radio button instead of to the right. This works in the instance I...
  6. I have the following RadioGroup on the front end:



    <ext:RadioGroup ID="rgDeadline" runat="server" FieldLabel="Deadline" ColumnsNumber="1" AutomaticGrouping="false" MarginSpec="10 0 0 0"> ...
  7. I recently upgraded an application to 3.1 and have been receiving this error in my error notification emails since then (luckily the users do not experience any issues using the system). I looked...
  8. Did this function work for you? It doesn't seem to be making a difference for me. But maybe I'm not using it right. Could you explain what is happening in the function below? If my test1 values are...
  9. I tried this (with the mySorter function being exactly like the one previously referenced, that worked in 2.X) but it doesn't have any effect on sorting:


    <ext:Store ID="storeID" runat="server"...
  10. So how do we do implement this same functionality in 3.1? It seems Groupers is replaced with Grouper and there is no ext:DataSorter in Grouper.
  11. You're right - using DataSorter within Groupers does work! Thank you!
  12. How do we implement the same functionality with CustomSortType as is described in this 1.X thread (http://forums.ext.net/showthread.php?12152-CLOSED-Order-GridPanel-Groups-in-an-arbitrary-order) in...
  13. This is something I thought about, but in my case, there's not a set group of values that are going to be used (like "Group A", "Group B", etc.). As the years go on, more quarters will be constantly...
  14. Based on a few other posts, I tried some things but no luck.

    I now have this for my group field:

    <ext:ModelField Name="QuarterDescription">
    <CustomSortType Fn="switchQuarterDescToCode...
  15. Within a store, is there a way to Group and Order by one value, but display another?

    For example, I have this:

    <ext:Store runat="server" GroupField="QuarterDescription" GroupDir="desc">

    But...
  16. Turns out I didn't need to convert. It was the "buildContainer" part of the code that I no longer needed after using AbstractComponent instead of Component:



    leftSide.Add(leftComponents);...
  17. This allows the project to build (using Add rather than AddRange - I don't think AddRange exists for FormPanel) but then when I actually run the page I get the same error:

    Unable to cast object of...
  18. Actually that doesn't do the trick... I still get that same original error when I convert this back to a Component list and try to add it to the FormPanel:
    "Cannot convert from 'Ext.Net.Label' to...
  19. Thanks! This takes care of my posted issue, however further down I then add these Component (now ComponentBase) lists to two form panels (named, fittingly "leftSide" and "rightSide"):

    ...
  20. In a 1.X version of a project I had some code where I create two lists of components:


    List<Component> leftComponents = new List<Component>();
    List<Component> rightComponents = new...
  21. That github community link (https://github.com/extnet/Ext.NET.Community/downloads) is now a 404 and I can't seem to find community downloads anywhere on the ext.net pages. Where can I get the...
  22. Thanks Danil!

    Just to be clear, I would just add the method you wrote out into my code and then where I used to do this:

    string mentorAreas = mcMentorAreas.SelectedItems.ValuesToJsonArray().To...
  23. I'm trying to follow the example from the example page (https://examples2.ext.net/#/GridPanel/Data_Presentation/Field_Mapping/) but I'm still having no luck.

    I have this in the store:
    ...
  24. I have this Store:


    <ext:Store ID="StoreStudentSpotlight" runat="server" OnReadData="StudentSpotlightReview_Refresh" PageSize="100" GroupDir="DESC" GroupField="statusCode"...
  25. Is there a way to set a Checkbox with something like AllowBlank="false"? I'd like my page validation to not let the form submit if the checkbox is not checked. Is there an attribute for this in...
Results 1 to 25 of 41
Page 1 of 2 1 2