Search Results

Type: Posts; User: Ronan

Search took 0.01 seconds.
  1. Problem solved.

    All my columns had flex on them. I didn't know you couldn't dynamically set the width when flex was set.

    Thanks for your help
  2. The problem can be reproduced.

    Take the code from this example:
    http://mvc.ext.net/#/GridPanel_ColumnModel/Ajax_Configuration/

    Add an extra button:


    Html.X().Button().Text("Change Width...
  3. Thanks for the reply Vladimir.

    However, that did not work either.

    Same story as the other 2 commands. If I don't manually drag the column first, then the command won't work.

    Any other ideas?
  4. Hi,

    I have a gridpanel with a number of columns. I want to dynamically set the width of the columns after the grid loads. I'm using console in IE tools to test what commands will work. The 2...
  5. Hi Vladimir,

    Yes Json is required. In the end I found an override on another topic that wiped the params from the URL.

    Thanks for the help.

    Code for anyone who needs it.
  6. MVC 4 application

    Hi,

    In my gridpanel I have a proxy setup as so:



    var reader = new Ext.Net.JsonReader {TotalProperty = "total", Root = "data"};
    var proxy = new...
  7. Hi,

    I have a grid with remote filtering and multi selection mode setup on it.

    When the page loads I can select a couple of rows and call the below function and it will print out the selected...
  8. Hi Vladimir,

    I think this is where you were pointing me but still does not work:


    <form id="AddMemoForm">
    <div class="memo-create">
    @(Html.X().Panel()
    ...
  9. ok I tired this but diod not work.

    Panel wrapped in Html Form:


    <form id="AddMemoForm" action="Home/Addmemo" method="POST">
    <div class="memo-create">
    @(Html.X().Panel() ...
  10. Hi Vladimir,

    Yep panel works fine.

    How do I then submit the data in the panel?

    Originally the plan was to use javescript like so:


    function SubmitForm() {
  11. Hi,

    I have a form panel like so:


    @(Html.X().FormPanel()
    .Method(HttpMethod.POST)
    .ID("AddMemoForm")
    .Title("Add Memo")
    ...
  12. Well I eventually got it to work after many hours wasted.

    The solution was to change my success method to



    success: function (response) {
    var jsonData =...
  13. I have tried stripped this right back to basics but still cannot get it to work.

    I have a function that is called when a button is pressed:


    function NextStep2() {
    var jsonData =...
  14. Hi,

    I am making my first app in EXT.net in MVC 4.

    My problem is I make a call to my action to get data to load into my Grid Panel like so passing in a model as a parameter. This all works fine:...
Results 1 to 14 of 14