User Profile & Activity

Yudi Member
Page
of 259
Posted: December 1, 2014 10:34 AM

Glad to hear that you finally have found the "Search" button.

Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.

Posted: December 1, 2014 10:31 AM

Please use the new license key of Crosslight 3 to register the Crosslight 3 product. You cannot use the existing license (of Crosslight 2) to solve the problem.

The new license key should be sent out to all active subscribers within a few hours. You can also find the license by login to the Account page.

Hope this helps.

Posted: December 1, 2014 10:23 AM

I tried to reproduce the reported problem in my Galaxy Nexus device with no luck. The TimePicker control doesn't appear as dark (see attached TimePicker on Galaxy Nexus.png).

For your information, I'm using FormBuilder sample app taken from Master branch of Crosslight samples repository.

Please feel free to let me know if there is anything that I might miss during my attempt to reproduce the problem.

Posted: December 1, 2014 6:53 AM

Sorry for any inconvenience this problem may have caused you.

This problem has been reported to WebGrid development team to be investigated further. It is filed under ASPNET-149. I will keep this thread updated with any news I heard from the team regarding ASPNET-149.

Posted: November 26, 2014 11:52 AM

When a column has its IsRowChecker property set to True, a few other properties will be automatically configured such as Width to 25px, ColumnType to Checkbox, SelectColumns To No and so on. The "select/deselect all" checkbox in Caption is automatically generated for IsRowChecker column. The code for the select/deselect all functionality has also been written internally.

Since the column type of Row checker column is checkbox, Caption property won't take effect when set. However, you can use the "hack" technique to the row checker element to add label element, such as shown in the following JS function.

function SetColumnCaption()
{
    var grid = ISGetObject("WebGrid1");
    var rowCheckerElm = grid.RootTable.GetElement(WG40.COLHEADER, WG40.HTMLTABLE).cells[1].childNodes[0].childNodes[0].childNodes[0];

    var newLabel = document.createElement("label");
    var newContent = document.createTextNode("this is text node");
    newLabel.appendChild(newContent);

    grid.RootTable.GetElement(WG40.COLHEADER, WG40.HTMLTABLE).cells[1].childNodes[0].childNodes[0].appendChild(newLabel);

    return true;
}

Hope this help.

The hotfix for ASPNET-128 and ASPNET-129 are expected to be available on December 2014 hotfix release. Should the nightly build of the hotfix is ready, I will let you know.

Apologize for the delay in sending this.

I made a minor modification to the UXGridViewObservCollStruct Modified.zip file. The modifications are made on the UXPage1ViewModel.cs.

On the UpdateData() method, after clear-ing the existing data I created a new collection of MyData and assign this data to GridDatafin.

ObservableCollection data = new ObservableCollection();
data.Add(new MyData { keyword = "keyword10", sources = "sources10", TestVal = 10 });
data.Add(new MyData { keyword = "keyword11", sources = "sources11", TestVal = 11 });
data.Add(new MyData { keyword = "keyword12", sources = "sources12", TestVal = 12 });
...
data.Add(new MyData { keyword = "keyword19", sources = "sources19", TestVal = 19 });

this.GridDatafin = data;

For more detail, please check the attached UXPage1ViewModel.cs file. Feel free to let us know if you have different result.

Posted: November 18, 2014 2:03 AM

Allow me for correcting my statement posted on November 17, 2014.

I recommend you to use the built-in chart engine since it will be the platform of charting feature of WebGrid. The contra side of using the Nevron chart engine is that if there is any issues or problems regarding the chart engine usage, there won't be hotfix for the corresponding issue or problem since it is third party component.

The entire charting sample in WebGrid 8 uses the built-in chart engine.

Hope this help.

Posted: November 17, 2014 2:18 AM

Please check my response on the ISNet.Nevron.Charting Library in WebGrid 8?? thread and feel to let us know if you still having difficulties with the chart engine.

Posted: November 17, 2014 2:11 AM

Since May 2008, WebGrid has its own built-in chart engine. In order to keep using Nevron chart engine, please follow these steps:

  • Specify and set the value of ChartEngine property to Nevron
    <ISWebGrid:WebGrid ID="WebGrid1" runat="server" ...>
        <ChartSettings ChartEngine="Nevron">
            ...
        </ChartSettings>
    </ISWebGrid:WebGrid>
  • Add ISNet.WebUI.WebGrid.ChartEngine.dll and ISNet.Nevron.Charting.dll file into your project's bin folder

Hope this help.

All times are GMT -5. The time now is 1:35 AM.
Previous Next