Search Results

Type: Posts; User: logidat

Search took 0.01 seconds.
  1. Hi, I have a grid with a list of people and a formPanel into the first tab where the data of the selected person is loaded. The second tab load a grid with aditional data whit a Loader sending de...
  2. Hi, here is my solution:



    <script type="text/javascript">

    var addRecord = function (grid, form) {

    if (grid.getSelectionModel().hasSelection()) {
    var row =...
  3. Hi, I have the following simplified example:



    @{
    Layout = "~/Views/Shared/_BasicLayout.cshtml";
    var X = Html.X();
    }

    <script type="text/javascript">
  4. Thanks @Daniil

    The Index action belongs to employees controller



    public class EmployeesController : Controller
    {
    public ActionResult Index()
    {
  5. Hi, I am migrating the following webform example to mvc

    https://examples2.ext.net/#/GridPanel/Miscellaneous/Details_Window/

    This is my view code



    @{
    Layout = null;
  6. I could not fix the problem so I changed my hosting provider and it worked. Please close the thread. Thanks
  7. The error occurs when I use any icon. No matter how or where you use it, fails.

    Example 1



    items.Add(new Button
    {
    Text = "Mi Cuenta",
    ...
  8. Thanks @geoffrey

    This is my Web.config




    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
    <configSections>
  9. Hi, I published my project and get the following exception:



    ItemTag validation (_tkn_1): Reference token (ext.net.global.icons) was not found.

    Description: An unhandled exception occurred...
  10. Hi @Daniil, I changed my code to the following and it worked



    var addRecord = function (userGrid, grid) {

    if (userGrid.getSelectionModel().hasSelection()) {
    ...
  11. Hi, I'm following this example: http://mvc.ext.net/#/GridPanel_Update/Batch/

    I'm trying to insert data into a grid, but instead of from a form, I need to do that from another grid (selected row)....
  12. Hi @Daniil, I found a solution but I got an error posted here:

    http://forums.ext.net/showthread.php?33841-Loading-PartialView-Token-Problem

    Please could you help? Thanks
  13. Hi Vladimir, if the view has only html I get blank page:


    @{
    Layout = null;
    }

    <!DOCTYPE html>

    <html>
  14. Hi, I'm trying to dynamically load a PartialView into a new tab in a TabPanel and I get the following error.


    Token is not unique
    -------------------
    ID = ext.net.global.script.before
    TagName...
  15. Hi, I'm testing the portal used in the examples for mvc:

    https://github.com/andreskane/Ext.NET.Community/tree/master/Ext.Net.Examples.MVC/Views/Main

    It is possible to load every view (tab) in...
Results 1 to 15 of 15