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
George,
You can do the row selection from server-side, although not the paging for now.
For the row selection, use this:
grid.RootTable.Rows[index].Selected = true;
Let me know how it goes.
Yes, you can uninstall existing installation manually, or let the Sp1 installer do it automatically for you.
Vince, the code that Glenn provided above should do it. Doesn't that work for you?
- James
Have you tried to create new ASP.NET application?
Also, does Intersoft Live samples that come with the installation package work? Can try both the Live Samples (executable) and C# Solution sample project.
Let me know which one work and which one not -- in details.
Hi Indra,
The following Javascript code will hide the column using Grid's built-in AJAX request.
<script type="text/javascript"> function HideColumn() { var grid = ISGetObject("WebGrid1"); var col = grid.RootTable.Columns.GetNamedItem("EmployeeID"); col.Set("Visible", "false", true); grid.RefreshAll(); } </script>
This approach should be more solid since the Grid will re-initialize all settings after the column is removed.
I hope it works for you.
- James.
Hi Memo,
Per my testing, the filter bar does take account the white space. I tried to enter "INTER SOFT SOLUTIONS" in the filter column, and then inspect the value in the server side.
Here's the result that I found:
WebGrid1.RootTable.FilteredColumns[0].FilterText; // Result is "INTER SOFT SOLUTIONS"
Could you confirm if you got the same result?
Hope this helps,James.
Yaniv, it's quite weird that your system references are affected. I don't think you need to reinstall .net framework 3.5 as the WebUI installation doesn't affect system and .net references.
I suggest you to clear the ASP.NET temporary files. You'll need to stop your IIS first before deleting the temporary files. Then rebuild your Visual Studio project.
In case it still didn't work, try to create a blank ASP.NET project and run a blank webform.
Yanic, is that error happening in your "Silverlight" project?
AFAIK, .NET references should have v3.5 version, not 2.0.5. Silverlight used 2.0.5 though.
Michael,
Here are some pointers for you:
George, in normal GUID case, the Grid should be able to insert the row successfully without additional code. However, your case is a bit different since the GUID is assigned in the backend, and not from front/middle layer.
Fortunately, WebGrid has a solution for your scenario which is very similar to the solutions in the KB article that Gordon provided. In short, you need to pass the GUID from backend into datasource level which involves two phases:
<InsertParameters> <asp:Parameter Direction="InputOutput" Name="BusinessID" Type="Object" /> ...
DataObjectMethodAttribute(DataObjectMethodType.Insert, true)] public int DoInsert(ref System.Guid BusinessID, ...) { // your insert call to SP objecet returnValue = DAL.InvokeYourInsertSP(params); // assign the returnValue, which should be the GUID value from your SP call BusinessID = returnValue; }
The above code assumes that your SP should return the GUID value properly, as in the case of Northwind sample where it returns the identity of the OrderId.
When an InputOutput parameter (ref) is assigned back from DoInsert method, WebGrid automatically detects the new value and assign it to the datasource and UI.
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