Search Results

Type: Posts; User: EnZo

Page 1 of 3 1 2 3
Search took 0.01 seconds.
  1. Do you have any of the following defined in your Web.config in the <extnet> node?

    directMethodNamespace

    or

    namespace
  2. Then maybe the Namespace is being overridden somewhere. Maybe in the Web.config.

    One more thing to be sure. Can you access the ViewPort using
    App.Viewport1?
  3. Hi Z

    It's true JavaScript is not strict and parameters are undefined. But in this case, you are calling a server function. So a parameter has to be passed or it will not work otherwise.

    I am...
  4. Also I'm not sure if
    Console.Write("TEST"); is going to give you any value.

    You can try replacing that with or adding


    X.Msg.Alert("Test", "Direct Event Successful").Show(); to show a...
  5. Hi Z

    The function TestDirectEvent takes id as a parameter.

    So you should pass that parameter in the function call.


    <ext:ResourceManager ID="ResourceManager1" runat="server">
    ...
  6. Hi arjunrvasisht

    Page_Load occurs when all the controls have been loaded, therefore I don't believe your fourth MultiCombo should be undefined. Unless you are creating it dynamically and...
  7. Hi arjunrvasisht

    Please view the below markup for the listener


    <Listeners>
    <Change Fn="CheckForSelections" />
    </Listeners>
  8. Hi tnwheeler

    I think there might be an issue with the noteEl being null.

    I'm not sure what could be the problem but I can suggest a quick workaround while this is looked into.

    Try setting...
  9. On second thought, using StyleSpec="margin-top: 45px;" makes it go wonky when editing a big text.

    I can therefore suggest pairing StyleSpec="position:absolute;" with Y="-10" that should work well!
  10. Hi praveencat123

    I believe the issue here is that you have StyleSpec="position:absolute;" on your TextArea.

    You can take that off and additionally I believe you could add StyleSpec="margin-top:...
  11. Hi opendat2000

    I believe you should set TodayText on your DatePicker and not on the CalendarPanel. Isn't that what you are trying to change?
  12. Apologies. I just noticed the method declaration where (Namespace = "Calendario") is specified.

    In that case, you can call it using


    Calendario.EditarDetalle();

    As for language of the...
  13. Hi opendat2000

    Please note that in the sample you provided, the namespace being used is CompanyX, as can be seen from the ResourceManager.

    Therefore, when you use
    App.direct.EditarDetalle();...
  14. Hi Vamsi

    Could you please provide a sample to reproduce the issue? I don't think what you're looking for is clearing the Model. There could be a mismatch somewhere on the Direct Event from the...
  15. Hi Daniil

    I have found that using EnableRegEx="true" does not completely work, hence why I did not suggest it. I wanted to open a separate thread regarding this.

    You can run the same quick...
  16. Hi Vamsi

    There are some open issues and threads regarding regular expressions and ComboBoxes.

    However I think this quick solution may work for you.


    <%@ Page Language="C#" %>

    <!DOCTYPE...
  17. Hi arjunrvasisht

    Yes, I didn't realize you were using a Checkbox Selection Model. I missed that from the attached picture!

    In that case, I can suggest this fix.

    Add a SelectionChange...
  18. Hi arjunrvasisht

    By default, the scroll bar should be automatically placed at the top. I suspect there is something overriding this. If you could post a sample maybe we can figure what is causing...
  19. Sure thing! It happens! Glad to be of help :)
  20. Hi tMp

    From Microsoft's MSDN, regarding Anonymous Types



    Therefore I would suggest using a workaround; instead of using a generic object array, use a DataTable.


    string col_name1 =...
  21. Hi hdsoso

    You were on the right track. Update your emptyShow function to this


    var emptyShow = function (cellValue, metadata, record, rowIndex, colIndex, store, view) {
    if (cellValue ==...
  22. Hi barnali

    You can set up Fn instead of Handler, and then catch it using the following JavaScript


    var handleRowCommand = function (commandColumn, commandName, record, rowIndex) {
    var...
  23. Hi Prasoon

    I can suggest something. Set the following Listener on your Menu


    <Listeners>
    <BeforeShow Fn="beforeactivate" />
    </Listeners>

    and the...
  24. Hi Vamsi

    Can you provide a small sample so that we can get a better idea how the Window, Gridpanel, form and Textbox are built?
  25. Hi CPA1158139

    After editing and updating the Store try the following, assuming your Summary's ID is Summary1


    App.Summary1.view.refresh();
Results 1 to 25 of 67
Page 1 of 3 1 2 3