Search Results

Type: Posts; User: garrisrd

Page 1 of 3 1 2 3
Search took 0.02 seconds.
  1. That worked. Thanks.
  2. Here's the control code for TestControl2.ascx:



    <%@ Control Language="vb" %>

    <script type="text/javascript">
    var toggleDCA = function () {
    alert('WTF?!');
    };
  3. I've got a checkbox control with a listener attached. The listener calls a javascript function which causes the control to become immediately disabled. However, I noticed the listener is being...
  4. That did it! Thanks!
  5. This is the ascx page (TestUserControl.ascx):


    <%@ Control Language="vb" %>


    <script runat="server">
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles...
  6. First, here's my little snippet of code:


    <ext:Button ID="QuickLaunchReport" runat="server" ToolTip="Report Quick Launch" IconCls="icon-report_new">
    ...
  7. Daniil,

    The autoheight setting on the fieldsets did the trick. The issue with the selectbox that I mentioned previously was not related to my layout issues.

    Thanks!

    Rick
  8. Daniil,

    To help clarify,

    When you click the selectbox dropdown, you do see the items properly displayed in the list. But the preselected item only shows its ID (which corresponds to an item in...
  9. Daniil,

    Setting DeferredRender="false" did fix the problem with the items not appearing correctly.

    However, another problem: The values in the selectboxes are showing their IDs instead of the...
  10. Hello.

    I've got a tab panel with two tabs. When I make the ActiveIndex = 1 (the second tab), the contents within the tab display correctly. When I make the ActiveIndex = 0 (the first tab), when...
  11. Hello,

    I've got a group tab panel with only one panel apiece in each grouptab. I would love it if there was a way not to show the expand/collapse icon as it is in my case unnecessary.

    Is there...
  12. Changing the OnEvent from 'Change' to 'Select' did the trick.

    Thanks for the help.

    Rick
  13. Sorry, but the sample code you provided does not work when I try to run it.

    Let me clarify what should be happening so we're both on the same page.

    After you check one or two of the items in...
  14. I tried switching the ajaxViewStateMode to "Include" but I received a parse error. It says the valid options are "Default/Disabled/Enabled". Can you clarify how the config file should read?

    Also,...
  15. I have the viewstaemode enabled in the web config:


    <extnet theme="Default" ajaxViewStateMode="Enabled" scriptMode="Release" licenseKey="" />

    Your reply assumes you were able to get my...
  16. Adding that line ('ViewStateMode="Enabled"') does not cause this to work. Any other ideas?
  17. In the first example below, I have a simple MultiCombo control that triggers a Change OnEvent. This event attempts to store the value of the selected items in viewstate. However, when I try to...
  18. That did the trick. Thanks.
  19. Hello,

    I have a gridview with a checkboxselectionmodel. One of my columns contains a hyperlink which spawns a popup window. When a user clicks the hyperlink, the new window pops up, but the...
  20. Thanks for the reply. The solution that I settled on was using a <Confirmation> tag with a beforeconfirm attribute.

    Example below:



    <%@ Page Language="vb" AutoEventWireup="false" %>
    ...
  21. I have a grid which has a column that dynamically displays an image command for "Approve" OR "Unapprove".

    Only when the command is "Unapprove", do I need to display a confirmation message and,...
  22. Adding a direct event, selectionchange within the SelectionModel seems to work. I appreciate your guidance on that.

    Thanks.
  23. I have a simple grid with that has checkboxes and a details link.

    I have a listener that listens for a click event (intenting to capture when a checkbox is checked or unchecked) and a command...
  24. I have a grid. It has checkboxes as well as an imagecommand. I want to listen for either an imagecommand click or a checkbox click...

    This seems logical but doesn't work:



    ...
  25. I have a page with a simple gridpanel. When the page first loads, I want all the rows in the grid to be pre-selected. In other words, I want the checkboxes to be defaulted to checked for each row.
    ...
Results 1 to 25 of 62
Page 1 of 3 1 2 3