User Profile & Activity

Martin Lie Support
martin@intersoftsolutions.com
Page
of 43
Posted: June 28, 2011 6:06 AM

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-

Posted: June 28, 2011 5:23 AM

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.

Thank you.

 

Regards,
-Martin-

Posted: June 28, 2011 5:19 AM

Hello Gavin,

I'm currently forwarding your issue to the developer team.

I will let you know when I get any feedback from them.

Thank you.

 

Regards,
-Martin-

Posted: June 28, 2011 4:38 AM

Hello,

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.

 

Regards,
-Martin-

 

Posted: June 28, 2011 4:19 AM

Hello,

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.

Hope this helps. Thank you.

 

Regards,
-Martin-

Posted: June 27, 2011 6:31 AM

Hello,

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.

Hope this helps. Thank you.

 

Regards,
-Martin-

Posted: June 27, 2011 5:03 AM

Hello Gavin,

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.

Thank you.

 

Regards,
-Martin-

Posted: June 27, 2011 2:12 AM

Hello,

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.

Hope this helps. Thank you.

 

Regards,
-Martin-

Posted: June 24, 2011 2:59 AM

Hello Gavin,

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?

Thank you.

 

Regards,
-Martin-

Posted: June 23, 2011 10:14 PM

Hello,

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;
}

Hope this helps. Thank you.

 

Regards,
-Martin-

All times are GMT -5. The time now is 9:47 AM.
Previous Next