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
Hello,
I suggest you to use the following XHTML DocType
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
I believe it works on your environment.
Thank you.
Regards,-Martin-
Hello James,
I've successfully replicated your issue on my end. The issue is gone when you set the DocumentMode to Quirks mode.
I'm forwarding this issue to the developer team to be investigated further.
I will let you know when I get any feedback/workaround from them.
Hello Gavin,
I'm currently forwarding your issue to the developer team.
I will let you know when I get any feedback from them.
You can use the following code in order to place the temporary exported file:
protected void Button1_Click(object sender, EventArgs e) { string file = WebGrid1.ExportGrid(new ISNet.WebUI.WebGrid.DynARInfo("html", Server.MapPath("/SISTemp/"), "WebGridToHTML")); // export grid data }
The exported file will be generated in SISTemp. Ensure that you have granted permission for user to access that folder, such as setting the security settings to Everyone.
You can search the members of DynARInfo in WebGrid documentation. Simply search "DynARInfo Class Members", the choose the same name in the results.
Hope this helps. Thank you.
If you use 32-bit, please check your Registry Editor and see whether you have Intersoft Solutions folder in HKEY_LOCAL_MACHINE >> SOFTWARES. Ensure that there is WebCombo 5.0.7200 in Intersoft Solutions folder.
If combo 5 doesn't exist, you might want to uninstall and re-install the 2011 R1 SP1. We have installed the suite and it is successfully installed WebCombo 5.0.
I've discussed this issue with the developer team.
It is recommended to use either LinqDataSource or ISLinqDataSource in order to sort the data correctly, because WebGrid's sorting is using ASCII code mechanism. Therefore, it might not suitable for your scenario and the sorting will not work perfectly in chinese characters.
If you use LinqDataSource, it will sort the data from the server, not using WebGrid's sorting mechanism.
Regarding this issue, I will need to discuss further with the developer team.
I will let you know when I get the update news from them.
Are you using 64-bit operating system?
If you are using 64-bit, you need to delete Intersoft Solutions folder in your Registry Editor.
Simply open Registry Editor from Run menu by typing regedit.
Then, expand HKEY_LOCAL_MACHINE >> SOFTWARES. If you see Intersoft Solutions folder, please remove/delete it.
I couldn't find StepName column in the attached sample.
Let me clarify your error. The sorting produces incorrect sorting value when you use WebGrid.
But when you use the same method on other control, it work fine. Is this correct?
However, if you try to sort in the grid without enabling paging, will the sorting value still display incorrectly?
We do have this scenario in WebGrid documentation. You can try to use the following code:
private void Button1_Click(object sender, System.EventArgs e) { // invoke the grid's export feature // through the server side WebGrid1.ExportGrid(SetDynInfo()); } private DynARInfo SetDynInfo() { // configure the DynARInfo object // as the parameter for the ExportGrid() method // need to configure 4 things : // dynInfo.ReportType // dynInfo.ReportPath // dynInfo.IISReportPath // dynInfo.DynPageOrientation DynARInfo dynInfo = new DynARInfo("html", Server.MapPath("~/TempReports") + @"\"); dynInfo.IISReportPath = "/TempReports/"; dynInfo.DynPageOrientation = PageOrientation.Portrait; return dynInfo; }
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