Search Results

Type: Posts; User: alanflores

Search took 0.01 seconds.
  1. Yeah. I spent enough time here already but I'm getting nowhere.
    Thanks for your time and all your very good suggestions.

    Oh. There was none.
  2. public partial class Cloning : System.Web.UI.Page
    {

    protected void Page_Load(object sender, EventArgs e)
    {
    string gridKey = "MYGRID";

    if...
  3. Hi Vladimir,

    You are wrong in saying that it will not work as it actually worked. I agree with you that it might not be a good practice but i have no other option.

    The code that takes 82...
  4. Hi Vladimir,

    The process of creating 6 grids with an average of 40 columns each grid on a page, takes about 82 seconds. If skipping this will NOT give me an advantage, tell me which one will?
    ...
  5. As i have mentioned again earlier, that object is already in cache. The long process is trying to create the column based on that object :


    private void RenderGridMe()
    {
    //THIS IS CACHED...
  6. I posted the wrong code earlier, this is what i meant:



    GridPanel gridPanel = new GridPanel();
    string gridConfig = string.Empty;

    //configure grid panel here
    gridPanel.Height =...
  7. Hi Vladimir,

    I understand what you are saying. I was trying to cache the config. so I can rebuild the grid using the config. However, it can not be done as well. As there is a serialization issue...
  8. Hi jchau,

    That is exactly my point. It was a dead end for you because:

    1. You have no idea how to resolve the issue, and
    2. You do not understand the question at all.

    I was asking to cache...
  9. Hi jchau,

    Thank for spending your time trying to understand the issue. But your assurances are not comforting at all. 1000 columns takes about 17 milliseconds, your guesstimate of less than 1...
  10. Hi Baidaly,

    Thank you for spending time to look into this. As I mentioned before, the data is already being cached. Even if it's not, there is no problem with the database query, the issue that is...
  11. The data is already being cached. But the data determines the logic on how, lets say, a column should be rendered. So even if it is cached, i need to run a logic to determine the right column to...
  12. Is there a way you can give me a sample code on how to do this? I have this code and it doesn't render the grid properly. I am testing on simple configurations first:



    ...
  13. Yes. I was getting that first error, then i tried to remove the Height config and it goes away, however, i have another error that somehow says the config string is using Json elements instead of...
  14. Hi Baidaly,

    I have tried this code but i hit the same error:




    GridPanel gridPanel = new GridPanel();
    string gridKey = "MYCACHEDGRIDCONFIG";
    string...
  15. As I have said earlier, the grid configuration is database driven, the values on the database determines what is the type of field in the each column, eg.. text, date, or number, etc. Another thing...
  16. Hi,

    I am generating a lot of dynamic grids to display data based on database-driven configurations. Some of the grids I have contain some 40+ columns and constructing the grids everytime a page is...
  17. Works pretty well.
    Thank you very much!

    -Allan
  18. Hi,

    On a row expander, i was able to set the handler to call Js.Expand(record, this);

    The Js method is called OK with no issues, but the loader URL is not being set correctly,
    got any tips?
  19. I tried this resizer, and it works pretty well. I will try and use this for now as it addresses my current needs. This is awesome, thanks a lot for sharing the code and most of all, for sharing your...
  20. Hi Guys,

    Thank you for all these recommendations. However, I still need to be able to render a grid on that rowexpander space. I would like to avoid the
    iframe but there is no other way for me...
  21. Hi Baidaly,

    Thank you for your response. My scenario is this :

    I am trying to use RowExpander and inside the RowExpander, I want to display an iframe that points to a page with a whole new...
  22. is it possible to put a splitter on a row expander? if so, can i get some example code?


    <Plugins>
    <ext:RowExpander ID="RowExpander" runat="server" Split="true">
    ...
  23. Thank you. It was just what I need. Awesome.

    Thanks,
    Allan
  24. Thank you very much for the response.
  25. Hi,

    I need to show the summary columns of a grid panel on the page load - server side. I understand that on the client-side, i can use toggleSummaryRow, is there a way this can be done on the...
Results 1 to 25 of 25