Search Results

Type: Posts; User: jogave

Search took 0.01 seconds.
  1. public Node ListarMenu(List<pMenu_DTO> listaMenu, int idpadre)
    {
    Node ndoPrincipal = new Node();
    Node ndoMenu;
    listaMenu.Where(menuConsulta =>...
  2. Thanks for reply Fabricio, this is a new ActionResult for to try you




    public ActionResult Index(short id_usuario)
    {


    List<pMenu_DTO> opciones = new List<pMenu_DTO>();
  3. Hi guys,
    I am trying to create a menu like this
    24915

    and this is my index.cshtml code


    X.Panel()
    .ID("MenuAccordion")
    .Region(Region.West)
  4. Do you have an example?
    Thanks again
  5. Hi Fabricio, thanks for reply me

    I changed my JS


    switch (tipocampo) {

    case "DAT":

    column.setEditor(new Ext.form.DateField());
  6. Hi Guys,
    I am Trying to create a grid with control created dynamically I used some code from this post ...
  7. Hi Daniil, can you write this sample for MVC I am trying but I had some error. Thanks
  8. Hi guys, I am trying to change mi aplication to spanish (Datepicker and alert etc) and set this
    <globalization culture="es-ES" /> in the web.config
    and

    <body>
    ...
  9. Hi,

    I save a Image in my database


    Stream fs = fuAddImg.PostedFile.InputStream;
    BinaryReader reader = new BinaryReader(fs);
    documento = reader.ReadBytes((Int32)fs.Length);

    String...
Results 1 to 9 of 9