iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
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.
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.
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.
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.
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.
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.
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.
Since May 2008, WebGrid has its own built-in chart engine. In order to keep using Nevron chart engine, please follow these steps:
<ISWebGrid:WebGrid ID="WebGrid1" runat="server" ...> <ChartSettings ChartEngine="Nevron"> ... </ChartSettings> </ISWebGrid:WebGrid>
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname