Search Results

Type: Posts; User: delta

Search took 0.01 seconds.
  1. I have controller to get json:

    public JsonResult GetJsonGroupAcc()
    {
    DataTable dt = UtContext.service.MainDb.SelectObjects("abgps_accounts_groups");
    string json...
  2. When I load my website, it no problem:
    When I Expand my panel, It no problem too.
    http://forums.ext.net/attachment.php?attachmentid=5021&d=1351927136
    But after that, I have this error when I...
  3. <script type="text/javascript">
    var nodelist;
    nodelist = document.getElementsByName('grid-device-name')
    function gaSelectBind() {
    App.ga_device_name.setValue(nodelist);
    ...
  4. My boss request me use Javascript, Can I use it to call Javascript

    .SelectionModel(gaSelectModel => {
    gaSelectModel.Add(Html.X().RowSelectionModel().Listeners(garowSelectListen =>...
  5. I want to map data between 2 form in my Project like this: https://examples2.ext.net/Examples/GridPanel/Data_with_Details/Form_Details/
    But this code is Asp.net, I use MVC3.
    My Grid Panel
    ...
  6. In this Example: https://examples2.ext.net/#/GridPanel/Data_with_Details/Form_Details/
    It use
    <Select OnEvent="RowSelect" Buffer="250">
    <EventMask...
  7. My Controller is here:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Mvc;
    using System.IO;
    using System.Text;
    using...
  8. I use this code to add Chart in Panel:

    @(Html.X().Window().Title("Speed Report(Line Chart)").Layout(LayoutType.Fit).Width(1000).Height(500).Hidden(true).ID("ParkReportWindow").Add(
    ...
  9. My code here


    @Html.X().ResourceManager()
    @Html.X().Button().Text("Click to show").OnClientClick("#{myWindow}.show();")
    @Html.X().Window().Title("My...
  10. My Menu Button, I want to use OnClientClick to show my window:

    @Html.X().Button().Text("Reports").Menu(menu =>
    {
    menu.Add(Html.X().Menu().Items(itm =>
    {
    ...
  11. I use this code to show the button in topbar, but topbar not show

    <script type="text/javascript">
    function mywin() {
    new Ext.Window({
    width: 600,
    height: 600,
    ...
Results 1 to 11 of 11