Search Results

Type: Posts; User: elisa

Page 1 of 2 1 2
Search took 0.01 seconds.
  1. That worked, thanks.
    I was following this example so I'm not sure what the difference is...?
  2. I'm trying to populate the Store ServerDetailsStore in this pop-up window:


    <ext:Window runat="server" ID="DetailsPopUp" Region="Center" Width="1225" Height="525"
    Hidden="true"...
  3. There is actually code that is executed in between, I just didn't think it was relevant to include it.
  4. I figured it out. I needed to save the reference to the Sprite object and remove only this object from the Surface.


    var vertLineMon = null;

    function resetVertLines() {...
  5. I've narrowed down the issue. It has to do with this javascript code I have to draw a vertical line onto the chart:


    var vertLineMon = false;

    function resetVertLines() {
    vertLineMon = false;...
  6. I take that back. I removed this logic and the issue with the black lines is still happening.
  7. My application consists of a GridPanel in which one of the columns opens a Window containing a line Chart. See the "View Graph" button in the image:
    7209

    When the button is clicked, the Store for...
  8. The typical
    <LoadMask ShowMask="true" /> was not working so we tried the suggestion to manually mask and unmask the Window. For some reason this was not working in the aspx page, perhaps because...
  9. Figured it out. In case it's helpful to anyone:



    var c = this.chart,
    yAxis = c.axes.items[0],
    xAxis = c.axes.items[1],
    dt = new Date(),
    xID = -1;
  10. Hi,

    Sowjanya and I work on the same team so I'm going to continue the thread as I'm working on this code now.

    If I understand correctly the value we would change in your example would be the...
  11. That worked great. Thanks Daniil!
  12. I display a MessageBox with a multiline TextArea like this:


    Ext.Msg.show({
    title: 'Applications',
    value: appsList,
    buttons: Ext.Msg.OK,
    multiline: true,
    ...
  13. Never mind, I'm an idiot.



    var linkRenderer = function (value, meta, record, index) {
    if (value != 0) {
    meta.tdCls = "tdRed";
    return Ext.String.format("<a class='company-link' href='#'...
  14. I have a renderer defined for select columns in a GridPanel as follows:


    var linkRenderer = function (value, meta, record, index) {
    if (value != 0) {
    return Ext.String.format("<a...
  15. Nevermind, accomplished this using:


    App.Environments.items.each(function (item) {
    item.setValue(false);
    });


    Thanks for your help!
  16. Ok so I can get it to work to access the currently checked items. But how would I be able to achieve this sort of functionality to uncheck all Checkboxes from code behind?


    foreach (Checkbox box...
  17. Right, I understand. This is the step I'm not clear about:
  18. Do you have a code example of how this would work?
  19. I define a CheckboxGroup:


    <ext:CheckboxGroup ID="Environments" runat="server" LabelCls="label-cls" FieldLabel="Environment" ColumnsNumber="1" Disabled="true" />


    The Checkboxes themselves...
  20. I am trying to load a simple GridPanel with a Store created in code behind. I'm not sure what I'm missing but when I add the Store to the GridPanel it just says "Loading..." and never loads.

    The...
  21. The ComboBox was not already expanded. I added
    QueryMode="Local" like you suggested and it loads normally now. Thanks!
  22. I have a form that should work as follows: depending on which Radio is selected from a RadioGroup, the store of a ComboBox gets reloaded given a parameter and the ComboBox refreshes with the new...
  23. Finally worked. Thanks!!
  24. I'm getting an error when trying to access the BufferedRenderer.



    Ext.Net.GridPanel mainTable = new Ext.Net.GridPanel()
    {
    ID = "MainTable",
    Title = mainTableTitle,
    ForceFit = true,...
  25. I also tried this:


    grid.getView().scrollToTop();


    But again it only works for the first filter.
Results 1 to 25 of 37
Page 1 of 2 1 2