Search Results

Type: Posts; User: AlexMaslakov

Page 1 of 5 1 2 3 4
Search took 0.02 seconds.
  1. There's an TextField

    <ext:TextField runat="server" Disabled="true">

    Is it possible to catch the event of clicking on it?
  2. It's ok already. It was bug in my code.
  3. Daniil, it still doen't work. It shows the current tab index, but not the previous.
  4. Is it possible to handle "OK" button in Ext.Net.ExtNet.Msg.Show(...) ?
  5. Thank you, Daniil. I say about result when I try it.
  6. protected void BeforeTabChange(object sender, DirectEventArgs e)
    {
    var a = e.ExtraParams["previousIndex"];
    }
    a is always equal null. It's strange.
  7. It's not what I need. The button displays on the next line now.
  8. <script type="text/javascript" language="javascript">
    var renderColumns = function(grid) {
    grid.getView().el.select('.x-grid3-header').setStyle('display', 'none');
    }
    </script>

    ...
  9. <ext:TabPanel ID="MainTp" runat="server" AutoHeight="true" ActiveIndex="0">
    <Items>
    <ext:Panel runat="server">
    <Items>...........</Items>
    ...
  10. protected void Page_Load(object sender, EventArgs e)
    {
    if (!Ext.Net.ExtNet.IsAjaxRequest)
    {
    ServicesCmbStore.DataSource = GetServices().Select(x => new { Key = x.Id, Value =...
  11. Are you sure? I used Content of FormPanel many times and it worked fine! I wonder why it doesn't work now.
    Do you mean using ext:Container in Items of FormPanel?
  12. How do I check if ext.net control is enabled or disabled on client side?
  13. I need to use Content instead of Items into the FormPanel in order to place there div tags
    In this case uc:CustomerCategory2 doesn't show.

    <ext:TabPanel runat="server">
    <Items>
    ...
  14. There is here

    <ext:TextField runat="server" FieldLabel="LastName" ID="LastNameTxt" />
    <ext:TextField runat="server" FieldLabel="FirstName" ID="FirstNameTxt" />
  15. I've a tab panel.


    tab = tabPanel.add({
    id: id,
    title: title,
    closable: true,
    autoLoad: {
    ...
  16. I've a user control "MyUserControl", which has a direct method "DirectMethod1".
    "MyUserControl" locates on aspx the page, and this aspx page is opened as a tab of a TabPanel with iframe mode....
  17. geoffrey.mcgill, I've found the first error. It occurs only in IE8 (maybe in IE7, 6... I don't know), but not in IE9, FF 6, Chrome 13, Opera 11.
    As I've said I have a user control named...
  18. I know it.
    My question is how to replace <%=ClientID%> in userControl with #{} in order to call Direct method ?
  19. <script type="text/javascript" language="javascript">
    Ext.net.DirectMethods.<%=ClientID%>.DeleteFile(sourceId, fileName);
    </script>
    How to replace <%=ClientID%> with #{} syntax?
    It doesn't...
  20. There is a page which shows an information about tariff plans, services and prices. I need an advice about easiest way showing this information. I didn't found any example I wanted at...
  21. I use ext.net controls in ASP.NET WebForms application.
    It works fine in Chrome 13-14, Opera 11, FF 6, but not in IE8.
    It throws JavaScript errors such as:

    Invalid argument

    And:
    ...
  22. Could anybody suggest me how to resolve this issue?
  23. Could anybody suggest me how to resolve this issue?
  24. I want to show an invalid icon, red wavy line and tooltip dynamically for:
    a) Specifeid div tag
    b) CheckBox (maybe for BoxLabel property )

    For the CheckBox I made the following:
    ...
  25. 'Cause FormPanel can't contain user controls and has some limitations.
Results 1 to 25 of 106
Page 1 of 5 1 2 3 4